I am not using a WebBrowser control, I'm trying to get the process of IE in a variable in order to control it.
My goal is to automatically scroll down the page if needed. Here's some more information on how I start IE with my code:
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
That doesn't let me control IE though... Is there a way to do it so that I can scroll down the page? I want to scroll up / down the page automatically because a web page will be on display throughout the company televisions and if there's too much data on the web page, it must scroll down to view it.