gpt4 book ai didi

vbscript - 如何暂停 vbscript 执行?

转载 作者:行者123 更新时间:2023-12-03 21:03:12 25 4
gpt4 key购买 nike

如何从内部暂停脚本的执行?类似于 Sleep WinAPI 函数?

最佳答案

您可以使用 WScript对象并调用 Sleep 方法:

Set WScript = CreateObject("WScript.Shell")
WScript.Sleep 2000 'Sleeps for 2 seconds

另一种选择是导入和使用 WinAPI 函数 directly (仅适用于 VBA,感谢 @Helen):
Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Sleep 2000

关于vbscript - 如何暂停 vbscript 执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4037180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com