标签: vba integer unsigned
我尝试使用以下行来调暗无符号整数:
dim curStart as UInteger
在运行时,我收到错误:
编译错误 “用户定义的类型未定义”
VBA中是否需要一个允许无符号整数的参考库?
我正在使用Visual Basic for Applications 7.1.1068
答案 0 :(得分:3)
你运气不好 - VBA不支持无符号类型。
使用Long代替,它是16位无符号类型的超集。