I have three form in windows application I want to open form2 inside first mdi Form1 then form3 open inside form2.
code in First MDI from1.
Form2 frm1 = new Form2();
frm1.MdiParent = this;
frm1.Show();
code in second form2.
Form3 frm3 = new Form3;
frm3.IsMdiContainer = true;
frm3.Show();
above code is not work in my application.
AmitPosted Mar 6, 2017, 7:29 AM
AmitPosted Mar 6, 2017, 7:27 AM
Gnanavel SekarPosted Feb 27, 2017, 3:20 AM
Nitin SontakkePosted Feb 26, 2017, 11:10 PM
Nitin SontakkePosted Feb 26, 2017, 11:08 PM