anonymous
2011-01-09 17:57:24 UTC
Dim Browser As New WebBrowser
TabControl1.TabPages.Add("New Page")
Browser.Name = "Web Browser"
Browser.Dock = DockStyle.Fill
TabControl1.SelectedTab.Controls.Add(Browser)
AddHandler Browser.ProgressChanged, AddressOf loading
AddHandler Browser.DocumentCompleted, AddressOf Done
int = int + 1
CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).GoHome()
This makes the "Home" redirected to the home page...But how did the people make this code? Like say no one ever invented this code...and I wanted to...where would I start? This might be a little confusing but try to understand...thanks in advancee :D