"Gerald" <jh...@SingaporeMail.Com> wrote in message news:...
> forgot to mention using turbo C
> I guess I will have to go back to defining arrays for each char to fill up
> the screen with alphabets
There are some generic video resolutions according to the VESA standard,
that should solve your problem. You can switch the display from 25 rows
with 80 characters to something like 43 rows with 80 characters.
The standard DOS command for increasing the number of lines on the screen
is
mode con lines=43
Follow-Up set to alt.msdos
Gabriele Neukam
--
"Mom, there is a spider in the bathroom!"
"Are you sure?" - "Yes!"
"How many legs has it got?"
"I can't tell - but they are all dangling from a thread!" (c): RL
How about something like:
find "call myprogram" autoexec.bat > NUL
if not errorlevel 1 goto end
REM call myprogram line not found, append it to autoexec.bat
echo call myprogram >> autoexec.bat
:end