Visual Basic and ATEasy Data Types |
Version 7 |
The following table shows VB .Net equivalent data types to ATEasy types. This conversion is used to export VB header file for ATEasy Dll.
|
ATEasy Data Types |
Visual Basic .Net Data Type |
|
Char |
SByte |
|
Byte |
Byte |
|
Short |
Short |
|
Bool |
Boolean |
|
Word |
UShort |
|
WChar |
Char |
|
Long |
Integer |
|
DLong |
Long |
|
DWord |
UInteger |
|
DDWord |
ULong |
|
Float |
Single |
|
Double |
Double |
|
Currency |
Long |
|
DateTime |
Date |
|
String |
String |
|
BString |
String |
|
Variant |
Object |
|
Procedure |
"Declare sub/function" statement |
|
Object |
Object |
|
Any |
Integer |