17-01-2007, 12:02 AM
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