<< Prev        Next >>

ID : 3561

Repeat

Processing is repeated as long as set conditions are met.

Commands used for repeating processing are listed below.

Command name Function
Do...Loop

To repeatedly execute a set of statements while a designated condition is True or until the condition becomes True.

It can be designated whether the conditional judgment is performed before or after a set of processes.

A loop becomes infinite when no condition is designated.

For...Next

To repeat a set of statements up to the specified number of times.

ID : 3561

<< Prev        Next >>