Jan 24, 2002 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 can i get something to blink in qbasic?
Jan 24, 2002 #2 musalk Programmer Joined Oct 30, 2001 Messages 33 Location DK yes and this should be the code else look in index under color in qbasic: color 7+16,0 print "text" Upvote 0 Downvote
yes and this should be the code else look in index under color in qbasic: color 7+16,0 print "text"
Jan 24, 2002 #3 qbasicking Programmer Joined Aug 19, 2001 Messages 628 Location US Use DO-LOOP. DO PRINT "Text" FOR g = 1 to 3000: NEXT PRINT " " FOR g = 1 to 3000: NEXT LOOP Upvote 0 Downvote
Use DO-LOOP. DO PRINT "Text" FOR g = 1 to 3000: NEXT PRINT " " FOR g = 1 to 3000: NEXT LOOP
Jan 24, 2002 #4 qbasicking Programmer Joined Aug 19, 2001 Messages 628 Location US The code I posted would be best for graphics, for text use NeoAnderson's way. Another way is to use GET and PUT Upvote 0 Downvote
The code I posted would be best for graphics, for text use NeoAnderson's way. Another way is to use GET and PUT