Microsoft® Visual Basic® Scripting Edition
While...Wend Statement
| Language Reference 
| Home | Site Map |

 

See Also


Description
Executes a series of statements as long as a given condition is True.

Syntax

While condition
    [statements]
Wend

The While...Wend statement syntax has these parts:

PartDescription
conditionNumeric or string expression that evaluates to True or False. If condition is Null, condition is treated as False.
statementsOne or more statements executed while condition is True.

Remarks

If condition is True, all statements in statements are executed until the Wend statement is encountered. Control then returns to the While statement and condition is again checked. If condition is still True, the process is repeated. If it is not True, execution resumes with the statement following the Wend statement.

While...Wend loops can be nested to any level. Each Wend matches the most recent While.


Tip The Do...Loop statement provides a more structured and flexible way to perform looping.


| Language Reference 
| Home | Site Map |

 


© 1996 by Microsoft Corporation.