在Win7上睡不工作(错误)

时间:2016-10-30 21:32:40

标签: vbscript wsh

这是我的代码:

Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "^r"
WshShell.Sleep 1000

错误消息显示:

  

对象不支持方法:WshShell.Sleep

上面一行中的SendKeys正在运作!

1 个答案:

答案 0 :(得分:1)

你应该这样写:

Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "^r"
Wscript.Sleep 1000

有关 WScript.Sleep

的更多信息