Continue

Last Modified: 1/2/2021

Jumps to the next iteration of the loop.

Arguments

NameTypeRequiredDescription
LoopType Keyword Yes The loop you're continuing.

Loop types

Type
Do, Loop
For
While

Example

Syntax: Sleep <Interval> [,TvBlank]
    For i = 1 To 10
        If i > 5 Then Continue For
        Print i
    Next

Remarks

Any statements after the Continue command will be ignored. Be cautious as you can create infinite loops very easily.

See Also

Do...Loop, For...Next, While...Wend