I have an MDIparent Forma that has some mdichild forms in it. Can you help me how to put mdichilds in Tabs, like google chrome, firefox, IE, Opera ...
Here is a good article on MDI forms with TabControls: http://www.codeproject.com/KB/cs/MDITabBrowsing.aspx
It will fail if you use MDI, if you have tabs.
MDI is designed to handle multiple forms inside the same container. However, with tabs, each form is in a different container. I see no benefit from using MDI in this scenario and avoid this.
- :
myForm.TopLevel=false; myForm.TopMost=false; tabPage1.Controls.Add(myForm);