Hi all,

we have a little tool in our company but the developer left no source code and can no longer be contacted.

basically I would like to create a Web Browser that displays the Content in it's screen.

I started like this:
Code:
    WebBrowser1.Navigate(TextBox1.Text)
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        WebBrowser1.GoForward()
    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged

    End Sub
End Class
The 1st Struggle already is that hitting Enter after adding the Address does not display the content. I need to click on the Search Button.

Additionally it would be nice if the Address is an IP Address that the last Part of the IP address could automatically be incremented and show the next Device in the Browser.

Any hints?

THX

PT-1