Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Procedure to "freeze" a loop until a condition is meant?


Octohunter
 Share

Recommended Posts

I don't understand you much but I think you want delay the start to the next iteration until a certain condition is met.

Try doing a loop within a loop. Something like this.

```

while (condition for the start of loop)

(code to loop)

while (condition to freeze the loop)

'leave it blank

wend ' WEnd for freeze loop

(code to loop if any)

WEnd ' WEnd for main loop

```
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...