我知道SendKeys Chr(13)是按下回车 请问怎么模拟按下组合键:Shift+1键
满意回答
2007-11-23 09:03
set wshshell=wscript.createobject("wscript.shell") wshshell.sendkeys "{Shift}" wshshell.sendkeys "{1}"
我知道SendKeys Chr(13)是按下回车 请问怎么模拟按下组合键:Shift+1键
set wshshell=wscript.createobject("wscript.shell") wshshell.sendkeys "{Shift}" wshshell.sendkeys "{1}"