I made a stripped down browser, and It has a text box that is where you type the URL, but when you click on a link, the text doesn't change to where you are, what's the code to fix this? Please help
Printable View
I made a stripped down browser, and It has a text box that is where you type the URL, but when you click on a link, the text doesn't change to where you are, what's the code to fix this? Please help
Well you need a label to show the status.
Code:Private Sub webbrowser1_StatusTextChange(ByVal Text As String)
Label1.Caption = Text
End Sub