Continue For

Skip the remainder of a For loop, and continue with the next iteration of the loop.

Syntax:  Continue For
 

Example:

Dim a,i as ubyte

a=0
For i =1 To 10
  If i>5 Then continue For
  a=a+1
Next

' At this point, a=5

Also See: For, Exit For