Esempio n. 1
0
 private void radMenuIC_Click(object sender, EventArgs e)
 {
     if (IC == null)
     {
         IC             = new frmImportCliente();
         IC.MdiParent   = this;
         IC.FormClosed += delegate { IC = null; };
         IC.Show();
     }
     else
     {
         MessageBox.Show("Ya esta Abierta la Ventana!!!");
     }
 }
Esempio n. 2
0
        private void radMenuIC_Click(object sender, EventArgs e)
        {
            if(IC==null){
            IC = new frmImportCliente();
            IC.MdiParent = this;
            IC.FormClosed += delegate { IC = null; };
            IC.Show();

            }
            else
            {
                MessageBox.Show("Ya esta Abierta la Ventana!!!");

            }
        }