PDA

View Full Version : How to really maximize a DOS box.


micky[_2_]
August 22nd 15, 10:19 AM
I was sure I had asked about this topic in this group, within the last
few months, but going back years and looking at every thread I started,
plus a lot of other posts, I can't find it. I can't find it in any DOS
group either.

How to really maximize a DOS box. Meaning the width, since max
already maxes the height.

And of course someone said it wasn't really DOS.

And someone else told me about alt-enter, for which I'm grateful and
which I've been using.

But tonight I came across a better** way. It's a Win10 page but it
works on XP too.

It only works if you are starting cmd from an icon. It works for TCC/LE
too, I used to have icons in the quick launch bbar for both.

Here's the url but all you need to know is to change 80 to 240 on the
Layout tab of the Properties of the CMD or TCC/LE icon. If this
doesn't just fill the screen, with the scroll bar at the right, try
other numbers.

You can change the colors on the Color tab, and you can make the font
sze bigger (now that I sit farther from the monitor) on the Font tab.
The default is 12 and I coudn't see any change with 14, but with 16 it
was not only bigger but brighter. I kid you not.



http://www.techrepublic.com/blog/windows-and-office/quick-tip-maximize-a-command-prompt-window-the-right-way/#ftag=YHF87e0214
Now, if you look back at Figure A, you can see the default maximized
Command Prompt window already spans the height of the screen, so we are
only concerned with extending the width. As such, our formula is Screen
Resolution Width / Font Size Width = Screen Buffer Size Width.

This means that the numbers we need from the screen resolution and the
font size are 1920 and 8. So, in the case of my example system, I'll use
1920/8 = 240.

On the Command Prompt Properties, I'll select the Layout tab and will
discover that the default Screen Buffer Size Width is 80. I'll then
change that to 240, as shown in Figure D, and click OK.

..........
I also found that having a black maximized Command Prompt window was a
bit unnerving, so I went to the Colors tab and changed the Screen Text
to white and the Screen Background to Blue. Now my maximized Command
Prompt window, shown in Figure F is easier to read and more pleasing to
look at.
-- end quote --


**Defintitely better. Better beause it's easier to read, not so fuzzy,
and keeps the scroll bar at the right. One can't scroll all the way up
to the start of the session. but it still helps a lot.

R.Wieser
August 22nd 15, 10:36 AM
Micky,

If you're looking for the classic DOS console screen (no backscrolling!) you
can use:

MODE CON COLS=80 LINES=25

I've put that in a batchfile (named DosBoot.bat) and have set the links
target to it:

%SystemRoot%\system32\cmd.exe /k {full path}\DosBoot.bat

Regards,
Rudy Wieser


-- Origional message:
micky > schreef in berichtnieuws
...
> I was sure I had asked about this topic in this group, within the last
> few months, but going back years and looking at every thread I started,
> plus a lot of other posts, I can't find it. I can't find it in any DOS
> group either.
>
> How to really maximize a DOS box. Meaning the width, since max
> already maxes the height.
>
> And of course someone said it wasn't really DOS.
>
> And someone else told me about alt-enter, for which I'm grateful and
> which I've been using.
>
> But tonight I came across a better** way. It's a Win10 page but it
> works on XP too.
>
> It only works if you are starting cmd from an icon. It works for TCC/LE
> too, I used to have icons in the quick launch bbar for both.
>
> Here's the url but all you need to know is to change 80 to 240 on the
> Layout tab of the Properties of the CMD or TCC/LE icon. If this
> doesn't just fill the screen, with the scroll bar at the right, try
> other numbers.
>
> You can change the colors on the Color tab, and you can make the font
> sze bigger (now that I sit farther from the monitor) on the Font tab.
> The default is 12 and I coudn't see any change with 14, but with 16 it
> was not only bigger but brighter. I kid you not.
>
>
>
>
http://www.techrepublic.com/blog/windows-and-office/quick-tip-maximize-a-com
mand-prompt-window-the-right-way/#ftag=YHF87e0214
> Now, if you look back at Figure A, you can see the default maximized
> Command Prompt window already spans the height of the screen, so we are
> only concerned with extending the width. As such, our formula is Screen
> Resolution Width / Font Size Width = Screen Buffer Size Width.
>
> This means that the numbers we need from the screen resolution and the
> font size are 1920 and 8. So, in the case of my example system, I'll use
> 1920/8 = 240.
>
> On the Command Prompt Properties, I'll select the Layout tab and will
> discover that the default Screen Buffer Size Width is 80. I'll then
> change that to 240, as shown in Figure D, and click OK.
>
> .........
> I also found that having a black maximized Command Prompt window was a
> bit unnerving, so I went to the Colors tab and changed the Screen Text
> to white and the Screen Background to Blue. Now my maximized Command
> Prompt window, shown in Figure F is easier to read and more pleasing to
> look at.
> -- end quote --
>
>
> **Defintitely better. Better beause it's easier to read, not so fuzzy,
> and keeps the scroll bar at the right. One can't scroll all the way up
> to the start of the session. but it still helps a lot.

August 22nd 15, 04:10 PM
On Sat, 22 Aug 2015 05:19:41 -0400, micky >
wrote:

>I was sure I had asked about this topic in this group, within the last
>few months, but going back years and looking at every thread I started,
>plus a lot of other posts, I can't find it. I can't find it in any DOS
>group either.
>

When I am running DOS apps, I use DOSBOX. A lot of stuff will not run
right on XP command line. (dBase for example)
That will let you see your DOS full screen.

The only thing I really miss is ANSI.SYS that does not seem to be
recognized in DOSBOX.
Having a DOS boot on a thumb drive is still the best answer if you
really want to be running DOS and it can be a tiny drive.
You can use a little left over fragment of one of your NFTS drives,
partitioned FAT for working space and you could boot from a diskette
if you wanted to.
I keep all of my DOS stuff in a FAT partition that I "mount" as C: in
DOSBOX and it shows up as C: when I load from a thumb drive or
diskette..

micky[_2_]
August 23rd 15, 01:36 AM
In microsoft.public.windowsxp.general, on Sat, 22 Aug 2015 11:36:46
+0200, "R.Wieser" > wrote:

>Micky,
>
>If you're looking for the classic DOS console screen (no backscrolling!) you
>can use:
>
>MODE CON COLS=80 LINES=25
>
>I've put that in a batchfile (named DosBoot.bat) and have set the links
>target to it:
>
>%SystemRoot%\system32\cmd.exe /k {full path}\DosBoot.bat
>
>Regards,
>Rudy Wieser

Thanks Rudy and gfret,

Micky
>
>
>-- Origional message:
>micky > schreef in berichtnieuws
...
>> I was sure I had asked about this topic in this group, within the last
>> few months, but going back years and looking at every thread I started,
>> plus a lot of other posts, I can't find it. I can't find it in any DOS
>> group either.
>>
>> How to really maximize a DOS box. Meaning the width, since max
>> already maxes the height.
>>
>> And of course someone said it wasn't really DOS.
>>
>> And someone else told me about alt-enter, for which I'm grateful and
>> which I've been using.
>>
>> But tonight I came across a better** way. It's a Win10 page but it
>> works on XP too.
>>
>> It only works if you are starting cmd from an icon. It works for TCC/LE
>> too, I used to have icons in the quick launch bbar for both.
>>
>> Here's the url but all you need to know is to change 80 to 240 on the
>> Layout tab of the Properties of the CMD or TCC/LE icon. If this
>> doesn't just fill the screen, with the scroll bar at the right, try
>> other numbers.
>>
>> You can change the colors on the Color tab, and you can make the font
>> sze bigger (now that I sit farther from the monitor) on the Font tab.
>> The default is 12 and I coudn't see any change with 14, but with 16 it
>> was not only bigger but brighter. I kid you not.
>>
>>
>>
>>
>http://www.techrepublic.com/blog/windows-and-office/quick-tip-maximize-a-com
>mand-prompt-window-the-right-way/#ftag=YHF87e0214
>> Now, if you look back at Figure A, you can see the default maximized
>> Command Prompt window already spans the height of the screen, so we are
>> only concerned with extending the width. As such, our formula is Screen
>> Resolution Width / Font Size Width = Screen Buffer Size Width.
>>
>> This means that the numbers we need from the screen resolution and the
>> font size are 1920 and 8. So, in the case of my example system, I'll use
>> 1920/8 = 240.
>>
>> On the Command Prompt Properties, I'll select the Layout tab and will
>> discover that the default Screen Buffer Size Width is 80. I'll then
>> change that to 240, as shown in Figure D, and click OK.
>>
>> .........
>> I also found that having a black maximized Command Prompt window was a
>> bit unnerving, so I went to the Colors tab and changed the Screen Text
>> to white and the Screen Background to Blue. Now my maximized Command
>> Prompt window, shown in Figure F is easier to read and more pleasing to
>> look at.
>> -- end quote --
>>
>>
>> **Defintitely better. Better beause it's easier to read, not so fuzzy,
>> and keeps the scroll bar at the right. One can't scroll all the way up
>> to the start of the session. but it still helps a lot.
>

Google