关于变量的生存周期设置使用:
声明静态变量时使用statice,动态变量使用dim
//
VBA的数据类型分为:
string字符串,需要运用半角状态"",可包含1~2的16次方个字符
integer整型,值为-32768~32767
long长整型,值为-2147483648~2147483647
single单精度浮点型,带有小数的数值,存储为32位
double双精度浮点型,带有小数的数值,存储为64位
currency货币型数据专门用于处理货币的数据类型,有效范围比浮点型数据小,但不像浮点型可能产生小的进位误差
date日期型,使用时需添加##,如 #January 1,2113#
//
enum枚举型,使用方式如下例:
public enum Week
Saturday
Sunday
Monday
Tuesday
......
end enum
//
type自定义型,可包含多种数据类型,为用户自定义数据类型,例如:
type employee
name as string
id as integer
birthday as date
...
end type
//