OK Like I said above your existing code refers to WebBrowser1 throughout, and in order to get it to work with any one of multiple browsers you need to change that code.
For example :
This code can be adapted to use the webbrowser control on the currently selected tab. If you are always only going to have just the webbroswer on each tab (ie no buttons or anything else) you can simply do this :Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate(ComboBox1.Text)
WebBrowser1.WebBrowserShortcutsEnabled = True
End Sub
Is there any chance you will ever have any other controls or there or will it only ever be the webbrowser on each tab?Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
CType(TabControl1.SelectedTab.Controls(0), WebBrowser).Navigate(ComboBox1.Text)
CType(TabControl1.SelectedTab.Controls(0), WebBrowser).WebBrowserShortcutsEnabled = True
End Sub

