Example #1
0
 public static ProductosNuevo Instancia()
 {
     if (frmInst == null || frmInst.IsDisposed == true)
     {
         frmInst = new ProductosNuevo();
     }
     frmInst.BringToFront();
     return(frmInst);
 }
Example #2
0
        private void btnNuevo_Click(object sender, EventArgs e)
        {
            ProductosNuevo nuevo = null;

            nuevo           = ProductosNuevo.Instancia();
            nuevo.MdiParent = MdiAdmin.ActiveForm;
            nuevo.Show();
            this.Close();
        }