Can you make a CRBasic program end on a conditional statement?
For instance...
If (Done = 1) Then
NextScan
Else
EndProg
Or something along those lines? I tried the above code but it failed to compile.
I think you should be able to ExitScan, which would effectively end the execution of the program.
Dana
Also take a look at the ContinueScan instruction. ContinueScan jumps you to the NextScan instruction; so the program will continue to run at the top of the next Scan interval.
Thanks! I It looks like both options work great.
Ryan