I activated an MDI child using the following code :
MyChildForm myChildForm = new MyChildForm();
myChildForm.MdiParent = this;
myChildForm.Show();
however, in the childForm thid.MdiParent = null.
the Parent form isMdiContainer ...
Pls help !!!
I activated an MDI child using the following code :
MyChildForm myChildForm = new MyChildForm();
myChildForm.MdiParent = this;
myChildForm.Show();
however, in the childForm thid.MdiParent = null.
the Parent form isMdiContainer ...
Pls help !!!
MdiParent Is NULL
Nicolas Louis Evaluant
myChildForm.Show(this);
HTH
Bye.