Qbasicnews.com
How do I stop text from scrolling? - Printable Version

+- Qbasicnews.com (http://qbasicnews.com/newforum)
+-- Forum: Qbasic "like" compilers/interpreters (http://qbasicnews.com/newforum/forum-5.html)
+--- Forum: FB Discussion & Programming Help (http://qbasicnews.com/newforum/forum-15.html)
+--- Thread: How do I stop text from scrolling? (/thread-7544.html)



How do I stop text from scrolling? - Pyrodap - 06-16-2005

Code:
WIDTH 40,40
LOCATE 40,40
PRINT "X"

Is there any way to print something on the bottom row without it causing the page to scroll up?


How do I stop text from scrolling? - MystikShadows - 06-16-2005

In QB you could have done

LOCATE 40,40
PRINT "X";

the semi colon would stop it from scrolling....see if that works


How do I stop text from scrolling? - Pyrodap - 06-16-2005

Well you learn something new everyday! Thanks


How do I stop text from scrolling? - MystikShadows - 06-16-2005

You're very welcome :-)


How do I stop text from scrolling? - Frobozz - 06-16-2005

Quote:In QB you could have done

LOCATE 40,40
PRINT "X";

the semi colon would stop it from scrolling....see if that works
Actually whenever I wanted to just print individual characters in QB, I would just use POKE. Nice and fast too. :wink:


How do I stop text from scrolling? - Dr_Davenstein - 06-17-2005

That trick doesn't work on all computers though. I had a Compaq that had a weird dos font address... I couldn't play alot of games because of it. Cry