Built-in Functions
Part:
1
2
3
(Continued from previous part...)
Misc. Functions
- IsArray(variable) - Returns True if the specified variable is an array
- IsDate(variable) - Returns True if the specified variable can be converted to a date
- IsEmpty(variable) - Returns True if the specified variable is Empty
- IsNull(variable) - Returns True is the specified variable is Null
- IsNumeric(variable) - Returns True if the specified variable can be converted to a number
- IsObject(variable) - Returns True if the specified variable is an object
- TypeName(variable) - Returns the type name of the specified variable
- VarType(vVariant) - Returns the type code of the specified variable
Conclusions
- Go read a VB reference book to see the entire list of built-in functions.
Part:
1
2
3
|