Exemple #1
0
        private void bttnGuardarGrupo_Click(object sender, EventArgs e)
        {
            if (Conector.GrupoYaExiste(txtGrupo.Text))
            {
                MessageBox.Show("Grupo ya existente", "ADVERTENCIA", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (GrupoNoVacio())
            {
                Conector.agregarGrupo(txtGrupo.Text);

                this.Close();
                cerro = false;
            }
        }