While Statement
Syntax:
While
condexpr
statement
s
Wend
Group:
Flow Control
Description:
Execute
statement
s while
condexpr
is
True
.
See Also:
Do
,
For
,
For Each
,
Exit
While.
Example:
Sub
Main
I = 2
While I < 10
I = I*2
Wend
Debug
.
Print
I ' 16
End
Sub