VBS TUTORIAL: VBScript statement-option Explicit statement _vbs

Source: Internet
Author: User

Option Explicit Statement

Forces an explicit declaration of all variables in the script.

Option Explicit

Description

If you use Option Explicit, the statement must appear before any other statements in the script.

When you use the Option Explicit statement, you must explicitly declare all variables using Dim,Private, public, or ReDim statements. If you try to use an undeclared variable name, an error occurs.

Tip You can use Option Explicit to avoid misspelled variable names that already exist. Use this statement to avoid confusion for variables that are not scoped.

The following example illustrates how to use the Option Explicit statement:

Option Explicit ' Forces a declaration variable to be displayed. Dim MyVar          'declare a variable. The MyInt = 10         ' variable was not declared to produce an error. MyVar = 10         'declaring a variable does not produce an error.

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.