VBS Sendkey发送多个密钥时



以下是问题的一个示例

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

相关内容

  • 没有找到相关文章

最新更新