您好我想自动选择“Personal Communications iSeries Access for Windows”中的某些行。 http://i.stack.imgur.com/doshI.jpg 手动这可以通过以下方式实现: - 1.从鼠标中选择(拖动鼠标左键鼠标左键) 2.放置光标并按SHIFT +箭头键(向上/向下/向左/向右)。
我尝试以下列方式使用VBScript: -
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys "{RIGHT 5}" 'Position the cursor
WshShell.SendKeys "+{RIGHT 5}" 'Sending SHIFT+Right Arrow five times
但是shift + RIGHT箭头键的代码对我不起作用。它正在编写66666.类似于WshShell.SendKeys "+{LEFT 5}"
我得到了44444作为输出。
这些VBScript sendkeys命令适用于其他Windows应用程序(如MS Word,Notepad)。
知道如何继续吗?
答案 0 :(得分:1)
尝试打开NumLock,然后使用数字4和6上的箭头键。