private void cityToolStripMenuItem_Click(object sender, EventArgs e) { Form fc = Application.OpenForms["FrmUserManagement"]; Form fcParentMenu = Application.OpenForms["FrmMainScreen"]; if (fc != null) { fc.Focus(); } else { FrmCity f1 = new FrmCity(); f1.MdiParent = fcParentMenu; f1.Show(); } }
void mnuCity_Click(object sender, EventArgs e) { Form fc = Application.OpenForms["FrmCity"]; Form fcParentMenu = Application.OpenForms["FrmMainScreen"]; if (fc != null) { fc.Focus(); } else { FrmCity f1 = new FrmCity(); f1.MdiParent = fcParentMenu; f1.Show(); } }