VBA 无法调暗 UInteger

VBA cannot dim a UInteger

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

dim curStart as UInteger

和 运行,我收到错误:

编译错误 "User-defined type not defined"

VBA 中是否有允许无符号整数所需的参考库?

我正在使用 Visual Basic for Applications 7.1.1068

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

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