


) and I wanted the user to simply see what's going on without beeing able to change it because it could somehow affect the bot's behaviour.Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Botting code here.... blah blah
wb.Navigate("http://www.mpgh.net/forum/33-visual-basics/")
End Sub
Private Sub wb_DocumentCompleted(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles wb.DocumentCompleted
wb.AllowNavigation = False
wb.Visible = True
End Sub
Private Sub wb_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles wb.Navigating
wb.Visible = False
End Sub
