multiple child forms - Mdi

spen2

New member
Joined
Sep 28, 2005
Messages
3
Programming Experience
Beginner
multiple child forms - Mdi Hi guys,
its me again, this time I would like to know how to where in code should I write the code to make each child form a true child form eg. child1.MdiParent = Me?

I am not clear on that should I refer to them in parent form or should I code each of them separately?

please send the complete code for that.

thank you in advance!

spen2
 
Put this in your parent form:

VB.NET:
dim frm as Form2 = new Form2 'Form2 is the child form
frm.MDIParent = Me
frm.Show()
 
Back
Top