How to display current website url in VB Webbrowser control.
For displaying the current website url do the following steps: First go to the 'Webbrowser1_DocumentCompleted' event of your Webbrowser control. Type in the following code(This applies for Textbox or Combobox): Textbox1.Text=Webbrowser1.Document.Url.AbsoluteUri That's it. The Textbox will display the current website url. Have a nice day :-). Video Tutorial