ID : 686
Flow Control Statement
| Command name | Function |
|---|---|
| On Error | To specify the processing routine at the time of error level 1 occurrence. |
| Resume | To end the error processing routine and then execution is resumed from the statement that caused the error or the next statement. |
| GoTo | To jump to a label. |
| Select Case...End Select | To execute one of statement blocks in accordance with the conditional expression value. |
| Do...Loop | To repeatedly execute a set of statements while a designated condition is True or until the condition becomes True. |
| Exit | To exit a designated processing block. |
| For...Next | To repeat a set of statements up to the specified number of times. |
| GoSub | To jump to a label. |
| If...End If | To execute statements between If and End If. |
| Call | To call and execute a procedure. |
ID : 686

