在 VBA 中休眠(整数溢出!!)
在 VBA 中,您可以
声明 Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
为自己提供睡眠例程。
但是,对于超过 32000 毫秒的值,必须传递给例程的 Long
似乎会溢出。
有没有一种方法可以让睡眠时间更长,而无需将多次连续调用睡眠例程的复杂性串联在一起?
In VBA you can
Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
to provide yourself with a sleep routine.
However, the Long
that must be passed to the routine appears to overflow for values in excess of 32000 milliseconds.
Is there a way to sleep for longer periods of time without the complexity of stringing together several consecutive calls to the sleep routine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不会溢出,除非计算所需毫秒数的代码导致溢出。
示例:
示例 2:
No, it doesn't overflow, unless your code that calculates required number of milliseconds causes an overflow.
Example:
Example 2: