input not working after RUN
Feb 20, 2011 0:29:09 GMT -5
Post by msteffes on Feb 20, 2011 0:29:09 GMT -5
if you execute this code the resulting print values are correct.
save as TestRUN
if you execute the file(TestRUN) holding the above code by using RUN, see below code.
The INPUT loads nothing in the variable value$
and the LINE INPUT fails with following error:
Runtime Error in program 'TestRUN': item$Message not understood: #nextLine
Is this a bug or am I missing something in how RUN should work?
save as TestRUN
cls
input "Enter value: ";value$
print "Value = ";value$
line input item$
print item$
wait
if you execute the file(TestRUN) holding the above code by using RUN, see below code.
run "c:\rbfree\projects\testRUN_project\TestRUN.bas" ,#subProg
render #subProg
The INPUT loads nothing in the variable value$
and the LINE INPUT fails with following error:
Runtime Error in program 'TestRUN': item$Message not understood: #nextLine
Is this a bug or am I missing something in how RUN should work?