V
VM
I would like to display a child form inside of an MDI but the problem is
that I'll be invoking that child form from within another child form.
If I use this code:
frmReportViewer frmReportViewer = new frmReportViewer();
//frmReportViewer.MdiParent = this;
frmReportViewer.Show();
It'll create the form but it won't be inside the parent MDI form.
What can I do?
Thanks.
that I'll be invoking that child form from within another child form.
If I use this code:
frmReportViewer frmReportViewer = new frmReportViewer();
//frmReportViewer.MdiParent = this;
frmReportViewer.Show();
It'll create the form but it won't be inside the parent MDI form.
What can I do?
Thanks.