<< Prev        Next >>

ID : 693

Program Flow

Programs are basically executed line by line from the top to the bottom. To allow for versatile use of programs, the following flow can be described.

Conditional branching
A line to execute can be selected when the set conditions are met and not met. Use "If...End If," "If...Then...Else" and "Select Case...End Select."
Jump
Jump program(s) to execute. Use "GoTo" and "Call."
Repeat
Processing is repeated as long as set conditions are met. Use "Do...Loop" and "For...Next."

ID : 693

<< Prev        Next >>