Hi There
I'm using Turbo Pascal for Windows 1.5, and using WinCrt in my program.
1. How can I use color text or color background? I try to use
Textcolor(1); Textbackground(4);, but it doesn't work.
2. How can I make my window maximum in program?
Thank you!!
Comments
:
: I'm using Turbo Pascal for Windows 1.5, and using WinCrt in my program.
: 1. How can I use color text or color background? I try to use
: Textcolor(1); Textbackground(4);, but it doesn't work.
:
: 2. How can I make my window maximum in program?
:
: Thank you!!
:
:
Hi for text colour and text background use this
TEXTCOLOR(then the colour you want)
TEXTBACKGROUNDCOLOR( then the colour y want here
but i dont no how to do the window maximize button.
from
mark
:
: I'm using Turbo Pascal for Windows 1.5, and using WinCrt in my program.
: 1. How can I use color text or color background? I try to use
: Textcolor(1); Textbackground(4);, but it doesn't work.
:
: 2. How can I make my window maximum in program?
:
: Thank you!!
:
:
:
For Maximum window Press Alt+Enter on your keyboard. And for textcolour use this: textcolour(color); { colour is the colour you choose} textbackground(color);
From Xaser-3