private void Btncrear_Click(object sender, EventArgs e) { bool estaAbierto = MenuPrincipal.ValidarApertura("GestionServicios"); if (estaAbierto == true) { MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO"); Application.OpenForms["GestionServicios"].Focus(); } else { forms.GestionServicios gestionServicios = new forms.GestionServicios(); gestionServicios.ShowDialog(); CargaInicial(); } }
private void Btnmodificar_Click(object sender, EventArgs e) { bool estaAbierto = MenuPrincipal.ValidarApertura("GestionServicios"); if (estaAbierto == true) { MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO"); Application.OpenForms["GestionServicios"].Focus(); } else { forms.GestionServicios gestion = new forms.GestionServicios(); gestion.pideservicio = Int32.Parse(dgservicios.Rows[dgservicios.CurrentRow.Index].Cells[0].Value.ToString()); gestion.pNombre = dgservicios.Rows[dgservicios.CurrentRow.Index].Cells[1].Value.ToString(); gestion.pidapp = dgservicios.Rows[dgservicios.CurrentRow.Index].Cells[2].Value.ToString(); gestion.pidplataforma = dgservicios.Rows[dgservicios.CurrentRow.Index].Cells[3].Value.ToString(); gestion.pservidor = dgservicios.Rows[dgservicios.CurrentRow.Index].Cells[4].Value.ToString(); gestion.op_guardar = 1; gestion.ShowDialog(); CargaInicial(); } }