VBScript Part 2 - Variables
What is variable?
Variable is a named container used to store values
Declaring a variable
There are three possible ways to declare a variable
Dim <variablename>
Public </variablename><variablename>
Private </variablename><variablename></variablename>
Ex –
Dim x, y, z
Dim a
Dim b, c
Variable naming rules
Variable names should following the below rules
Must not exceed 255 characters.
Must be unique in the [...]

(7 votes
Tags used -



































