Posted by: Marco Westermann
Hi,
I have an easy question but I didn't find an answer. Is there anything
similar to the continue-command in Gupta? While break steps out of the
loop, continue normally steps back to the While-line. In VB the command
is Next
Example:
Code: Select all
Set i = 0
While i<=10
if i = 5
Continue
print(i)
Set i = i+1
Thanks Marco