Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blink Command

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
can i get something to blink in qbasic?
 
yes and this should be the code else look in index under color in qbasic:

color 7+16,0
print "text"
 
Use DO-LOOP.
DO
PRINT "Text"
FOR g = 1 to 3000: NEXT
PRINT " "
FOR g = 1 to 3000: NEXT
LOOP
 
The code I posted would be best for graphics, for text use NeoAnderson's way. Another way is to use GET and PUT
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top