
MDI child form disables all its objets?
Ozgur,
On Form2, you have to set the MdiParent property to Form1. This will
make it an MDI child.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
Quote:
> Hi,
> I have two forms.I want to make one of them parent and the other child.
> When I use myChildForm.Show() my child form appears but all its objects
like
> textBoxs, labels... become disabled. I mean I can't use any of the objects
> on the child form.
> My code is like;
> /* in form1 class... */
> Form2 myChildForm=new From2();
> myChildForm.Show();
> properties; Form1.IsMdiParent=true
> Help please?
> thanks...