TIB: another problem


[Prev][Next][Index][Thread]

TIB: another problem




man, with all the times i ask questions here, people must be getting sick of 
me.

ah well, anyways.
i have a 2nd program that's run out of the first (which i finally got the 
calling to work for), which checks to see the values set to a couple of 
variables (the program's below), and it seems to work fine (gee, that only 
took an hour or two), but at the end of the program, before returning back to 
the first one, it's suppose to "pause". however, it doesnt. ive tried the 
pause any number of places, but no matter what, it just runs through the 
variables, displays what it should (for about half a second) and then 
immediately goes back to the first program without waiting for the user to 
press "enter" (as the pause command should do).
take a look, see what i did wrong. thanks.
(and yes im aware there are probably much quicker ways to write this so it 
runs faster, but oh well. not concerned with that right now)


:ClLCD
:Disp "Your equipment"
:If M==1
:Then
:Disp "Crowbar"
:Else
:Goto TWO
:Lbl TWO
:If N==1
:Then
:Disp "Torch"
:Else
:Goto THREE
:Lbl THREE
:Pause 
:ClLCD
:Return


Follow-Ups: