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