Continue Statement

MikeEller

Registered User.
Local time
Today, 15:57
Joined
Jan 7, 2005
Messages
32
Is there a way to get the effects of a "Continue" statement in a Do...Loop?

I want to stop the loop at a point if a particular item is not found and continue the loop from the top...the next iteration of the loop.

Do we have anything like that?

Thanks,
Mike
 
The quick and dirty solution is to place a label at the bottom of your loop and have a "Go to" when you want to continue the loop.

Code:
 Do ....
....
go to label

....
.....

Label:

Loop
 

Users who are viewing this thread

Back
Top Bottom