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

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

            if (estaAbierto == true)
            {
                MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO");
                Application.OpenForms["GestionPlataformas"].Focus();
            }
            else
            {
                forms.GestionPlataformas gestionPlataformas = new forms.GestionPlataformas();
                gestionPlataformas.pIdPlataforma = Int32.Parse(dgplataforma.Rows[dgplataforma.CurrentRow.Index].Cells[0].Value.ToString());
                gestionPlataformas.pNombre       = dgplataforma.Rows[dgplataforma.CurrentRow.Index].Cells[1].Value.ToString();
                gestionPlataformas.pServidor     = dgplataforma.Rows[dgplataforma.CurrentRow.Index].Cells[2].Value.ToString();
                gestionPlataformas.pTipo         = dgplataforma.Rows[dgplataforma.CurrentRow.Index].Cells[3].Value.ToString();
                gestionPlataformas.op_guardar    = 1;
                gestionPlataformas.ShowDialog();
                CargaInicial();
            }
        }