0
我不使用WebBrowser控件,我試圖在一個變量中獲取IE的過程以控制它。Autoscroll Internet Explorer
我的目標是在需要時自動向下滾動頁面。下面是我如何啓動IE我的代碼一些更多的信息:
Dim IE As SHDocVw.InternetExplorer
IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.Navigate("C:\rptStatusProd.xml") 'load web page google.com
While IE.Busy
Application.DoEvents() 'wait until IE is done loading page.
End While
IE.FullScreen = True
這並不讓我控制IE,雖然...有沒有辦法做到這一點,這樣我可以向下滾動頁面?我想自動向上/向下滾動頁面,因爲網頁將在整個公司電視上顯示,如果網頁上的數據太多,它必須向下滾動以查看它。