Please visit our sponsors !
VBScript Keywords
VBScript Keywords
Keyword |
Description |
Empty |
Used to indicate an uninitialized variable value. A
variable value is uninitialized when it is first created and no value is
assigned to it, or when a variable value is explicitly set to empty. dim x
'the variable x is uninitialized!
x="ff" 'the variable x is NOT uninitialized anymore
x=empty 'the variable x is uninitialized!
Note: This is not the same as Null!! |
False |
Has a value equal to 0 |
Nothing |
Used to disassociate an object variable from an object to
release system resources. Example: set myObject=Nothing |
Null |
Used to indicate that a variable contains no valid data.
Note: This is not the same as Empty!! |
True |
Has a value equal to -1 |
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|