vb.net Code:
Dim page As New TabPage(String.Format("T " & (x_Count), TabControl1.TabPages.Count + 1)) TabControl1.TabPages.Add(page) Dim browser As New WebBrowser() page.Controls.Add(browser) browser.Dock = DockStyle.Fill browser.Navigate(TextBox3.Text)
This is the code I am using to create a new tab with a new web browser in it. However, how would I direct a "Web Browser Refresh" function or a "Navigate" button to these newly declared Web Browsers? What I have come up with is closing the tab and just reopening it with the specified URL, but that isn't hardly practical at all.
Any tips? Thanks you guys!




Reply With Quote
