VB script data types:
- VB script has only one datatype called a variant.
- A variant is a special kind of datatype that can contain different kinds of information , depending on how it's used.
- variant can contain either numeric or string information
variant sub type:
The different categories of informaion that can be contained in a variant are called sub type.
1.empty
2.null
3.byte
4.int
5.long
6.single
7.double
8.string
9.boolean
10.date
11.currency
12.object
13.error
0 Comments