I have a Form (Form1) that just contains a Webbrowser control (wb)
The following code is put in the form's Load event
Upon running the code, the requested page is loaded into the browser. Unfortunately, scrolling does not seem to work: neither with the scroll bars, nor with the mouse's scroll wheel.
The operation terminates with an error message that basically states:
What am I supposed to do?
_________________________________
In theory, there is no difference between theory and practice. In practice, there is. [attributed to Yogi Berra]
The following code is put in the form's Load event
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
wb.ScrollBarsEnabled = True
wb.GoHome()
End Sub
Upon running the code, the requested page is loaded into the browser. Unfortunately, scrolling does not seem to work: neither with the scroll bars, nor with the mouse's scroll wheel.
The operation terminates with an error message that basically states:
This property or Method is not supported by this object
What am I supposed to do?
_________________________________
In theory, there is no difference between theory and practice. In practice, there is. [attributed to Yogi Berra]