用vbs 在某个程序上 先后运行两组快捷键(先按ctrl+A进行全选,接着是按ctrl+R运行) 200
这样可以吗?setWshShell=WScript.CreateObject("WScript.Shell")WshShell.run"D:\a.exe"WshShell...
这样可以吗?
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run "D:\a.exe"
WshShell.SendKeys ("^A")
WshShell.SendKeys ("^R") 展开
set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.run "D:\a.exe"
WshShell.SendKeys ("^A")
WshShell.SendKeys ("^R") 展开
展开全部
除非你的电脑非常快,否则Run "D:\a.exe"之后得加上延迟,Wscript.Sleep 3000之类的,不然程序还没完全打开,Sendkeys就运行了,按键消息就不能被程序接收。
追问
程序已经开着的,就是想把焦点定在该程序上再运行两个组合键
追答
就是让程序获取焦点?
那你可以用Wscript.shell的Appactivate方法,
WshShell.Appactivate "程序标题" '程序标题就是程序标题栏的文字,比如你这个是Bulk Rename Utility
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询