VBS TUTORIAL: Statement-while ... Wend Statement _vbs

Source: Internet
Author: User

While ... Wend Statement

Executes a series of statements when the specified condition is True .

While condition
 
Version [statements]
Wend

Parameters

Condition

A numeric or string expression that evaluates to True or False. If condition is Null, the condition is treated as False.

Statements

One or more statements that are executed when the condition is True .

Description

If condition is True, statements before all Wend statements in statements are executed, and control is returned to while< /c13> statement, and double-check condition. If condition is still True, repeat the procedure above. If not True, the program continues execution from the statement following the wend statement.

While ... Wend loops can be multiple nested structures. Each wend corresponds to the nearest while statement.

Attention Do ... The Loop statement provides a more structured and adaptable way to execute loops.

The following example illustrates how to use a while ... Wend Statement:

Dim CounterCounter = 0                'Initializes the variable. While Counter < 20 ' the value of the test counter.    Counter = Counter + 1   increase the counter.    Alert Counter Wend '  terminates a  loop when the counter is greater than.

Requirements

Version 1

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.