private void cidadeToolStripMenuItem_Click(object sender, EventArgs e) { frmCidade frmCid = new frmCidade(); frmCid.MdiParent = this; frmCid.WindowState = FormWindowState.Maximized; frmCid.Show(); }
private void cidadeToolStripMenuItem_Click(object sender, EventArgs e) { Form fc = Application.OpenForms["frmCidade"]; if (fc != null) { fc.Close(); } frmCidade frmCid = new frmCidade(); frmCid.MdiParent = this; frmCid.WindowState = FormWindowState.Maximized; frmCid.Show(); }