Hi,
1.- Does somenone know how can I add Subform to MDI-Form?
Merci,
latina
Hi,
1.- Does somenone know how can I add Subform to MDI-Form?
Merci,
latina
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ryan AlfordPosted Aug 1, 2008, 8:38 AM
frmSubForm subForm = new frmSubForm();
subForm.MdiParent = this; // "this" is referring to the MDI form
subForm.Show();