Hi. I was wondering if there was a way to add a tabpage with controls such as a webbrowser on it but when you fire the event again the controls are still there. Here is my code for the event:

TabControl1.TabPages.Add(tb)

tb.Controls.Add(wb)

wb.Dock = DockStyle.Fill

wb.Navigate(textbox1.Text)

TabControl1 is the TabControl, tb is the new tabpage, wb is the new webbrowser, and textbox1 is the url box. When I fire this event twice, the first webbrowser dissapears and the new tabpage has nothing on it. I'm taking a guess that it's a naming problem but I'm wondering if there is another way to address it. am not trying to reparent the web browser. I am trying to create a new web browser for each tabpage but they will all have the same functions as the original such as if you clicked the back button the web browser that you are currently viewing will go back one page, etc. Please HELP! Thanks.