I open MdiChild_1 from the parent MainForm and I want to open MdiChild_2 from a button on the MdiChild_1
I tried this code but not working..
frmMain MainForm = new frmMain();
frmRemarks RemarksForm = new frmRemarks();
RemarksForm.MdiParent = MainForm;
RemarksForm.Show();