private void Btncrear_Click(object sender, EventArgs e)
        {
            bool estaAbierto = MenuPrincipal.ValidarApertura("GestionAplicaciones");

            if (estaAbierto == true)
            {
                MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO");
                Application.OpenForms["GestionAplicaciones"].Focus();
            }
            else
            {
                forms.GestionAplicaciones aplicaciones = new forms.GestionAplicaciones();
                aplicaciones.ShowDialog();
                CargaInicial();
            }
        }
        private void Btnmodificar_Click(object sender, EventArgs e)
        {
            bool estaAbierto = MenuPrincipal.ValidarApertura("GestionAplicaciones");

            if (estaAbierto == true)
            {
                MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO");
                Application.OpenForms["GestionAplicaciones"].Focus();
            }
            else
            {
                forms.GestionAplicaciones gestion = new forms.GestionAplicaciones();
                gestion.pidapp        = Int32.Parse(dgapp.Rows[dgapp.CurrentRow.Index].Cells[0].Value.ToString());
                gestion.pNombre       = dgapp.Rows[dgapp.CurrentRow.Index].Cells[1].Value.ToString();
                gestion.pidplataforma = dgapp.Rows[dgapp.CurrentRow.Index].Cells[2].Value.ToString();
                gestion.start         = dgapp.Rows[dgapp.CurrentRow.Index].Cells[3].Value.ToString();
                gestion.stop          = dgapp.Rows[dgapp.CurrentRow.Index].Cells[4].Value.ToString();
                gestion.op_guardar    = 1;
                gestion.ShowDialog();
                CargaInicial();
            }
        }