I have a MDIparent Forma and which has some mdichild forms in it. Can you help me some how put the mdichilds in Tabs like google chrome , firefox , IE , Opera ...
Asked
Active
Viewed 1.0k times
2 Answers
3
There's a good article on MDI forms with TabControls here: http://www.codeproject.com/KB/cs/MDITabBrowsing.aspx

Daniel Walker
- 760
- 6
- 11
-
ThankYou , I had seen it but I need close button for each tab something like Google Chrome but much simpler – Pedrum Jun 20 '11 at 19:42
-
1
1
Try something like this:
myForm.TopLevel=false;
myForm.TopMost=false;
tabPage1.Controls.Add(myForm);

Bahaa Salaheldin
- 515
- 1
- 7
- 16