This is regarding of MDI Forms
I have created MDI Form called "mainform" and another two Form respectively "Form1" and "Form2". my requirement is to display the Form2 within the mainform by clicking checkbox that is placed in Form1 . how do i do this ?

VulpesPosted Jan 24, 2014, 1:35 PM
If you want to close Form1 when you display Form2, then just call : this.Close().
asela nuwanPosted Jan 25, 2014, 12:18 AM
asela nuwanPosted Jan 24, 2014, 12:50 PM
Biswa Pujarini MohapatraPosted Jan 24, 2014, 12:20 PM
Form2 childForm = new Form2();
childForm.MdiParent = this;
childForm.Show()