0
試圖通過嚮應用程序發送擊鍵來自動生成報告。 我可以將應用程序轉發,但它會忽略所有SendKeys命令。 問題是什麼?接下來我應該嘗試什麼? 這是我的代碼:應用程序忽略VBS SendKeys
Const App_Title = "AccountRight Plus" ' Window title
Dim Wsh, win_title
' Create the WshShell object, which Run and AppActivate require.
Set Wsh = WScript.CreateObject("WScript.Shell")
Wsh.AppActivate App_Title
WScript.Sleep 800
Wsh.SendKeys "^i"
WScript.Sleep 800
Wsh.SendKeys "{TAB}"
WScript.Sleep 800
Wsh.SendKeys "{TAB}"
感謝您嘗試:-) 我想你的建議,但仍然沒有結果。 – Nushi