Yes o.O but I just started using this program today and Im not to familiar with the things.
~Dylan
PS: Never answered my question ;l
EDIT: Is this it?
Code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal As System.EventArgs) Handles ToolStripButton1.Click
WebBrowser1.GoBack()
End Sub
Private Sub ToolStripButton2_Click(ByVal sender As System.Object, ByVal As System.EventArgs) Handles ToolStripButton2.Click
WebBrowser1.Refresh()
End Sub
Private Sub ToolStripButton3_Click(ByVal sender As System.Object, ByVal As System.EventArgs) Handles ToolStripButton3.Click
WebBrowser1.GoForward()
End Sub
Private Sub ToolStripButton4_Click(ByVal sender As System.Object, ByVal As System.EventArgs) Handles ToolStripButton4.Click
WebBrowser1.Navigate(ToolStripTextBox1.Text)
End Sub
End Class