如何获得键盘输入" CTRL L" VBScript中的命令

时间:2015-07-09 11:21:39

标签: vbscript

这是从键盘输入输入的正确方法(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)

1 个答案:

答案 0 :(得分:1)

使用SendKeys发送CTRL-L的正确方法如下: -

WshShell.SendKeys("^l")

以下是获取更多信息的SendKeys方法的MSDN参考:

https://msdn.microsoft.com/en-us/library/8c6yea83(v=vs.84).aspx