VBA无法调暗UInteger

时间:2018-04-15 19:14:54

标签: vba integer unsigned

我尝试使用以下行来调暗无符号整数:

dim curStart as UInteger

在运行时,我收到错误:

编译错误 “用户定义的类型未定义”

VBA中是否需要一个允许无符号整数的参考库?

我正在使用Visual Basic for Applications 7.1.1068

1 个答案:

答案 0 :(得分:3)

你运气不好 - VBA不支持无符号类型。

使用Long代替,它是16位无符号类型的超集。