(adsbygoogle = window.adsbygoogle || []).push({});
ok so today im going to be teaching you how to make a web browser in VB.NET! so lets begin
open a new project and a windows application
drag the form to fill the whole space you've got and then goto properties and select lock = true
now add a text box five buttons and of course a webbrowser
arrange them like this !
You must login or register to view this content.
and then from left first name them :
go back forward refresh home
now double click go and type :
webbrowser1.navigate(textbox1.text)
now double click back and type :
webbrowser1.GoBack()
double click forward and type :
WebBrowser1.GoForward()
double click refresh and type :
webbrowser1.refresh
double click home and type :
webbrowser1.gohome()
now to display the current pages URL in the textbox then double click the webbrowser and type :
TextBox1.Text = WebBrowser1.Url.ToString()
hope this helps and dont forget to thanks if it did!