private void btnPrints_Click(object sender, EventArgs e) { FrmPrints newMDIChild = new FrmPrints(); // Set the Parent Form of the Child window. newMDIChild.MdiParent = this; // Display the new form. newMDIChild.Show(); }