You say you need help on the homepage?
add "Home" to your settings, then make a form or w/e you wanna do that says set homepage, then a button that says save.
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
My.Settings.Home = TextBox1.Text
My.Settings.Save()
End Sub
Thats the code for the button, now on your browser for the 'home button' do this:
Code:
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
WebBrowser1.Navigate(misc.TextBox1.Text)
End Sub
That's just off the top of my head.
Then on the form with your webbrowser on form load do something like this:
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
WebBrowser1.Navigate(My.Settings.Home)
'formnamehere'.TextBox1.Text = My.Settings.Home
My.Settings.Reload()
End Sub
This way the user can change the homepage any time they like. D:
Hope i helped.
