0
有人知道如何模擬Visual Basic中的製表符和向下箭頭按鈕嗎?我使用Internet Explorer對象在VB如何使用Visual Basic在Internet Explorer中「製表」和「向下箭頭」
有人知道如何模擬Visual Basic中的製表符和向下箭頭按鈕嗎?我使用Internet Explorer對象在VB如何使用Visual Basic在Internet Explorer中「製表」和「向下箭頭」
的SendKeys的伎倆
Dim numberoftabs as Long
Dim numberofdownarrows1 as long
numberoftabs = yourvalue
numberofdownarrows1 = yourvalue
Application.SendKeys "{TAB " & numberoftabs & "}", True
Application.SendKeys "{DOWN " & numberofdownarrows1 & "}", True
Application.SendKeys "~", True
如果你可以顯示你使用的代碼,它可能會對未來的谷歌搜索引擎更好的幫助。 –
你可以嘗試使用的SendKeys。雖然如果你更新你的問題並解釋你的目標,有人可能會提供一個更適合你想要完成的解決方案。 – JimmyPena