Main Menu Small size window

Please use this Board for QBasic related requests ( file research, programming, etc.)

Moderators:Administrator, Global Moderator

Post Reply
gmott
Main Menu Small size window

Post by gmott » Thu Oct 05, 2006 6:00 pm

Starting Quick Basic in Windows XP gives a small size Menu window. How can I increase the window size?

Valerie
Sr. Member
Posts:54
Joined:Wed Dec 15, 2004 8:10 am
Location:Coromandel, NZ

Post by Valerie » Fri Oct 06, 2006 4:14 am

Alt+Enter ?

But here's how I do it, as I like to work in the dos emulator...

I have a shortcut to cmd.exe on my desktop. The cmd line is:

C:\WINDOWS\SYSTEM32\CMD.EXE /t:1F/e:on

This opens the cmd window in full screen.

(Enter cmd/? to find out what the parameters are for..)

And I have a .bat file in the root of C: which is:

@echo off
CLS
D: (the drive where QBasic is held)
CD QB (making QB the default directory)
QB /l QB.QLB /ah (starting QBasic)
CD\ (returning to the root of D:)
C: (returning to the root of C:)

And being a lazy person I have yet another .bat file to return me to the Windows desktop:

@echo off
exit

This sure isn't the only way to achieve what I want but it does for me

Good luck

Post Reply