CST2601 Visual
Basic I
Notes on While... Wend Statement
While...Wend StatementExecutes a series of statements as long as a given condition is True. Syntax While condition Wend The While...Wend statement syntax has these parts:
Remarks If condition is True, all 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. While...Wend Statement ExampleThis example uses the While...Wend statement to increment a counter variable. The statements in the loop are executed as long as the condition evaluates to True.
|