Qbasicnews.com

Full Version: print command
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
can the print command be used in conjunction with anything else that allows you to change the color of the text and the postion where it types it?
Using 'locate' before a print statement allows you to change the cols and rows of the print location, and 'color' allows you to chnage the color of text.
Code:
Color 4
Locate 2,3
Print "Hello"
That will print a RED 'Hello' at row 2 column 3 on the screen
sweet, thnx