G
Galaxia
I am trying to add a Form into a Panel in .NET 2003:
Form2 ff2 = new Form2();
panel2.Controls.Add(ff2);
But it failed in runtime which said I could not add a top control into another control.
Can I have any way to add a Form into a Panel? Need I modify any property of the Form to make it not a "top control"?
--
"Forward Galaxia"
Form2 ff2 = new Form2();
panel2.Controls.Add(ff2);
But it failed in runtime which said I could not add a top control into another control.
Can I have any way to add a Form into a Panel? Need I modify any property of the Form to make it not a "top control"?
--
"Forward Galaxia"