multi-tab Browser
-
I have tried to make a multi-tab browser using some of the information from this[^] post. I have a button that opens up a new tab with a browser in it. But when i go back to the other tab, the browser is gone from that tab! The code i used is...
tabControlBrowser.TabPages.Add("http://www.google.com");
int tabCount = tabControlBrowser.TabCount;
tabControlBrowser.TabPages[tabCount - 1].Controls.Add(webBrowser);
tabControlBrowser.SelectTab(tabCount - 1);Your help is appreciated!!!
-
I have tried to make a multi-tab browser using some of the information from this[^] post. I have a button that opens up a new tab with a browser in it. But when i go back to the other tab, the browser is gone from that tab! The code i used is...
tabControlBrowser.TabPages.Add("http://www.google.com");
int tabCount = tabControlBrowser.TabCount;
tabControlBrowser.TabPages[tabCount - 1].Controls.Add(webBrowser);
tabControlBrowser.SelectTab(tabCount - 1);Your help is appreciated!!!
dsl/fahk wrote:
tabControlBrowser.TabPages[tabCount - 1].Controls.Add(webBrowser);
You're moving your webbrowser control between pages, instead of creating a new one
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog