B2t: wenn du nichtmal weist wie man neue Objekte einer Klasse erstellt dann rate ich dir dringend ein Buch zu kaufen oder es bleiben zu lassen.
'first thing first navigate to the forum or website
webbrowser1.navigate("yourforum.com")
'next double click one the webbrowser in the form designer to get document 'complete event, something like this!
Private Sub WebBrowser1_DocumentCompleted(sender As Object, e As WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
' in this tut we use elements to login to a website in the background
'you noticed "GetElementById("password")" in this case password is the id and how do we find it?
'first right click on the button or textbox on the and click inspect elements(chrome for this tut)
' if you see something like id="test" or name="testname" then test or testname is the id
WebBrowser1.Document.GetElementById("username").InnerText = TextBox1.Text
'innertext gets the value of the textbox(not sure havnt tested yet :P)
WebBrowser1.Document.GetElementById("password").InnerText = TextBox2.Text
' and in this one we raised and event which should click the button with the name "login"
WebBrowser1.Document.GetElementById("login").RaiseEvent("click")
End Sub