Hey there,
I am a Newby and I got a problem.
I wrote this little program :
start:
while text$="" : text$=inkey$ : wend
if text$=chr$(13) then goto ende
print text$;
text$=""
goto start
ende:
print "You wrote : ", text$
end
My problem is that I'd like to write and print out a whole sentence into
the variable text$. But all the variable continues is a strange symbol.
How can I save more than one symbol into the variable text$? By the way I am
using PB/DOS 2.10f .
Thanks for your help. I hope my English is good enough to make clear what I want.
Greets
Chris
------------------
I am a Newby and I got a problem.
I wrote this little program :
start:
while text$="" : text$=inkey$ : wend
if text$=chr$(13) then goto ende
print text$;
text$=""
goto start
ende:
print "You wrote : ", text$
end
My problem is that I'd like to write and print out a whole sentence into
the variable text$. But all the variable continues is a strange symbol.
How can I save more than one symbol into the variable text$? By the way I am
using PB/DOS 2.10f .
Thanks for your help. I hope my English is good enough to make clear what I want.
Greets
Chris
------------------
Comment