以下是问题的一个示例
Set a=createobject("wscript.shell")
a.sendkey (%117)
在这种情况下,我想同时进行ALT+U,但读数不正确,我不确定如何解决这个问题。
关键代码为:
Alt - %
Ctrl - ^
所以对于Alt+U do:
Set a=createobject("wscript.shell")
a.SendKeys "%U"
有关所有其他钥匙代码,请参阅https://social.technet.microsoft.com/wiki/contents/articles/5169.vbscript-sendkeys-method.aspx