这是从键盘输入输入的正确方法(CTRL+L
)吗?
dim WshShell
set WshShell = CreateObject("WScript.Shell")
wait(2)
WshShell.SendKeys("^108")
wait(2)
或
dim WshShell
set WshShell = CreateObject("WScript.Shell")
wait(2)
WshShell.SendKeys("^l")
wait(2)
答案 0 :(得分:1)
使用SendKeys
发送CTRL-L的正确方法如下: -
WshShell.SendKeys("^l")
以下是获取更多信息的SendKeys
方法的MSDN参考:
https://msdn.microsoft.com/en-us/library/8c6yea83(v=vs.84).aspx