VB控制键盘

时间:2012-08-22 21:38:53

标签: vba

我正在寻找一个VB脚本来发送以下键盘命令:

Ctrl + W

如果有人可以帮助我,我会非常感激。 谢谢!

1 个答案:

答案 0 :(得分:2)

查看SendKeys功能:

SendKeys "^w", True ' ^ indicates holding 'Ctrl', second parameter is 'Wait'

更多资源:

Using AppActivate and Sendkeys in VBA shell command

http://msdn.microsoft.com/en-us/library/office/aa202943%28v=office.10%29.aspx

http://www.tek-tips.com/faqs.cfm?fid=5037