I am navigating to a website using a webbrowers control and I wish to automatically scroll the page after it is loaded.
I have used scrolltop , scrollleft commands as set out below but nothing seems to happen.
WebBrowser1.Document.Body.ScrollTop = 100
WebBrowser1.Document.Body.ScrollLeft = 200
I have placed the above commands in a command button and wait until the page has loaded before I press it and also in the
WebBrowser1_DocumentCompleted sub
other commands such as
WebBrowser1.Document.Body.ScrollIntoView(True)
seem to work ok
some help is appreciated
thanks