4

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 ...

Pedrum
  • 634
  • 3
  • 7
  • 16

2 Answers2

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
1

Try something like this:

myForm.TopLevel=false;
myForm.TopMost=false;
tabPage1.Controls.Add(myForm);
Bahaa Salaheldin
  • 515
  • 1
  • 7
  • 16