【发布时间】:2013-05-29 13:08:24
【问题描述】:
我没有使用 WebBrowser 控件,我试图将 IE 的进程放在一个变量中以便对其进行控制。
我的目标是在需要时自动向下滚动页面。以下是有关如何使用我的代码启动 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... 有没有办法让我可以向下滚动页面?我想自动向上/向下滚动页面,因为网页将在整个公司的电视上显示,如果网页上的数据过多,则必须向下滚动才能查看。
【问题讨论】:
标签: vb.net internet-explorer autoscroll