While
Control flow statement.
Do While condition
or
Do
or
While [condition]
While specifies that a loop block will continue if the condition following it evaluates as true. This condition is checked during each loop iteration.
Syntax
Do While condition
[statement block]
Loopor
Do
[statement block]
Loop While conditionor
While [condition]
[statement block]
WendDescription
While specifies that a loop block will continue if the condition following it evaluates as true. This condition is checked during each loop iteration.
Differences from QB
- None
See also