Example #1
0
        private void cidadeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCidade frmCid = new frmCidade();

            frmCid.MdiParent   = this;
            frmCid.WindowState = FormWindowState.Maximized;
            frmCid.Show();
        }
Example #2
0
        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();
        }