Posted: Wed Oct 02, 2002 7:51 pm
Restored from previous forum. Originally posted by fred.
No Continue skip the rest of the loop and go to the next element.
For k=0 to 10
if k=2
Continue
EndIf
Debug k
Next
It will skip the '2' output. Anyway, it's very C like
Fred - AlphaSND
No Continue skip the rest of the loop and go to the next element.
For k=0 to 10
if k=2
Continue
EndIf
Debug k
Next
It will skip the '2' output. Anyway, it's very C like
Fred - AlphaSND