这是我的代码:
Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "^r"
WshShell.Sleep 1000
错误消息显示:
对象不支持方法:WshShell.Sleep
上面一行中的SendKeys
正在运作!
答案 0 :(得分:1)
你应该这样写:
Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys "^r"
Wscript.Sleep 1000
的更多信息