Esempio n. 1
0
        private void guardar_Click(object sender, EventArgs e)
        {
            if (!idField.Text.Contains(".") && !idField.Text.Contains(",") && !idField.Text.Contains("$")) //agregar más
            {
                idField.MaxLength = 9; em.MaxLength = 20; nom.MaxLength = 15; ap1.MaxLength = 15; ap2.MaxLength = 15;
                dir.MaxLength     = 30; tel.MaxLength = 8; carnebox.MaxLength = 6; estad.MaxLength = 15;

                int v = estudiante.AgregarEstudiante(idField.Text, em.Text, nom.Text, ap1.Text, ap2.Text, sexo,
                                                     fecha.Value.ToString("yyyy-MM-dd"), dir.Text, tel.Text, carnebox.Text, estad.Text);
                bool agregado = estudiante.AgregarUsuario(username.Text, contra.Text, idField.Text);
                if (agregado && v == 0)
                {
                    idField.Clear(); em.Clear(); nom.Clear(); ap1.Clear(); ap2.Clear(); dir.Clear();
                    tel.Clear(); carnebox.Clear(); estad.Clear();
                    username.Clear(); contra.Clear();
                    MessageBox.Show("Agregado correctamente", "Agregar",
                                    MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                }
                else if (!agregado)
                {
                    bd.EjecutarConsulta("DELETE FROM Estudiante Where Cedula = '" + idField.Text + "';");
                    MessageBox.Show("El usuario ya existe", "Agregar",
                                    MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
                else
                {
                    bd.EjecutarConsulta("DELETE FROM Usuarios Where nombreUsuario = '" + username.Text + "';");
                    MessageBox.Show("Ya existe un estudiante asociado a este numero de cedula en el sistema", "Resultados",
                                    MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                MessageBox.Show("Cédula Inválida", "Agregar",
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Esempio n. 2
0
 private void guardar_Click(object sender, EventArgs e)
 {
     estudiante.AgregarEstudiante(idField.Text, em.Text, nom.Text, ap1.Text, ap2.Text, sexo,
                                  fecha.Text, dir.Text, tel.Text, carnebox.Text, estad.Text);
 }