This Tutorial is all about How to Change Web Browser Home Page in VB.Net. In this tutorial you will be able to Change Web Browser Home Page in VB.Net. So lets get Started:
- First is open the Visual Basic, Select File on the menu, then click New and create a new project.
- Then a New Project Dialog will appear. You can rename your project, depending on what you like to name it. After that click OK
- After that, design your form like this just like what I’ve shown you below.
Add a Webbrowser, a Button to the form.
- Then, Click on Project, then click on your project properties (Last item of the menu).
Click on Settings tab, - Under Name add the word “Home”, and add a url under Value “http://www.google.com”
- After that, Add this code to the Go to Homepage Button.
[vbnet]
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate(My.Settings.Home)
End Sub
[/vbnet] - Add this code to the Change Home Page Button.
[vbnet]
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim response As Object
response = InputBox(“Please Enter Home Page URL”, “Webbrowser”, My.Settings.Home)
My.Settings.Home = response
My.Settings.Save()End Sub
[/vbnet] - Finally, Click F5 to run the program.
Output:
If you have any comments or suggestions about on How to Change Web Browser Home Page in VB.Net please feel free to contact our webpage.
Download How to Change Web Browser Home Page in VB.Net Here
Other Articles Readers might read:
- Counting Links using Web Page in VB.Net
- Change Background Color Using Color Dialog in VB.Net
- Get List of All Links on a Web Page in VB.Net