While...Wend Statement

  1. While condition

    1. .

      .

      .

      [StatementBlock]

      .

      .

      .

    Wend

While begins the while...Wend flow of control structure. Condition is any numeric or expression that evaluates to true or false. If the condition is true the statements are executed. The statements can be any number of valid Enable Basic statements. Wend ends the While...Wend flow of control structure.

Related Topics:

Do...Loop Statement

More:

Example - While Wend Statement