Hello I got this error message "An error occurred creating the form. See Exception.InnerException for details. The error is: Event Click is not valid on this ActiveX control." I do not know how to fix it. Here is the code that is being used at the moment.
Quote:
Public Class Form1
Private Sub Cmdgo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cmdgo.Click
WebBrowser1.Navigate(Text1.Text)
End Sub
Private Sub Cmdforward_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WB.Click
WebBrowser1.GoForward()
End Sub
Private Sub Cmdback_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cmdback.Click
WebBrowser1.GoBack()
End Sub
Private Sub Cmdrefresh_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WebBrowser1.Click
WebBrowser1.Refresh()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
End Class
I hope you can help!