Microsoft® Visual Basic® Scripting Edition
VBScript Constants
VBScript Tutorial |
Previous | Next |

 

What Is a Constant?
A constant is a meaningful name that takes the place of a number or string and never changes. VBScript currently has a number of constants defined in the language. In VBScript, constants are implemented as literal values assigned to constant names.

Creating Constants
You create constants in VBScript using the Const statement. Using the Const statement, you can create string or numeric constants with meaningful names. You can then assign them literal values and use them in your script. For example:


Const MyString
MyString = "This is my string."
Const MyAge
MyAge = 49
Note that the string literal is enclosed in quotation marks (" "). Quotation marks are the most obvious way to differentiate string values from numeric values. Date literals and time literals can be represented by enclosing them in number signs (#). For example:


Const CutoffDate
CutOffDate = #1-1-96#
You may want to adopt a naming scheme to differentiate constants from variables. This will prevent you from trying to reassign constant values while your script is running. For example, you might want to use a "vb" prefix on your constant names, or you can name your constants in all capital letters as recommended in VBScript Coding Conventions. In either case, it is a good idea to differentiate constants from variables. This eliminates confusion as you develop more complex scripts.


© 1997 Microsoft Corporation. All rights reserved. Legal Notices.
Casa de Bender