I am making a program which loads predefined webpages (www.xyz.com) in WebBrowser inside tab pages. The problem is that when i give the following code:

Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
WebBrowser1.Navigate("http://www.abc.net/")
WebBrowser2.Navigate("http://chat.xyz.com/")
WebBrowser3.Navigate("http://www.123.asp")
WebBrowser4.Navigate("http://www.098.com")
End Sub

this would not load the webpage. I presume because WebBrowser1, 2,3, and 4 are inside tabpages.

Any idea how to correct this? I hope you understand what i said.