Difference between revisions of "Variants"

From HashVB
Jump to: navigation, search
 
(Corrected the content and set a category)
 
Line 1: Line 1:
Variants are variables that change their value as you use them.  
+
Variants are a special type of variable that can hold any data type or object. This means they are used when you do not know what type of data you are goign to be storing.
In one place they could equal something, but in another place it could equal something else.
+
 
 +
This is the default data type if you dont define an explicit data type.
 +
 
 +
==See also==
 +
* [[Option Explicit]]
 +
 
 +
[[Category:Glossary]]

Latest revision as of 10:55, 16 February 2007

Variants are a special type of variable that can hold any data type or object. This means they are used when you do not know what type of data you are goign to be storing.

This is the default data type if you dont define an explicit data type.

See also