Hello Techies,
Here is an interesting conundrum...
Normally I can get the webbrowser control in my vb.net application to scroll using the following code after the webpage loads into the webbrowser control:
But when the webpage uses the dom to update the page after the page loads, the scroll bars will scroll for half a moment to 50,50 but then snap back to 0,0. Very frustrating.
Any ideas on how to overcome the snapback?
Here is an interesting conundrum...
Normally I can get the webbrowser control in my vb.net application to scroll using the following code after the webpage loads into the webbrowser control:
Code:
WebBrowserPageView.Document.Window.ScrollTo(50, 50)
Any ideas on how to overcome the snapback?
Comment