Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
"Continue" For Loop?
#2
A big fat IF statement or GoTo is all I can think of.

Code:
For I = 1 to 100
If I  37 Then
DoStuff
End If
Next I

Code:
For I = 1 to 100
If I = 37 Then GoTo NextI
DoStuff
NextI:
Next I
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)