Qbasicnews.com

Full Version: bottom line print
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
when I try to locate the bottom lines and then print something
it adds a cr automatically even if I use ; after PRINT "stuff"
please help...
use a semicolon after the statement. It wont print a cr then.:
Code:
print "stuff";
I just said I use ";"......... Tongue

The problem is it wont work then either....

....maybe I didn't use ";"

....I try again....

....I'm tired zzzZZzzzZZz
oops :oops:

sorry - VIEW PRINT works for me.
You need a locate and then a print;

Code:
LOCATE 25,1
PRINT "your mother";
Plasma that still won't work, I know from experience. Although I've never looked at VIEW PRINT...
It works fine.
Alternatively, you can write straight to memory. This is superior if you're doing a text-mode action game anyways:

DEF SEG = &HB800
I have never been good at direct memory access Wiz... (tell me
more, I'm interested)

Anyway now when I tested it did work, I think...
PRINT $word;

works perfectly for me !

Plasma .. I think you're wrong ...
Pages: 1 2