Ejemplo n.º 1
0
        private void BtnAgregar_Click(object sender, EventArgs e)
        {
            inasistencias.agregar_inasistencias(IDGrupo, Matricula, dtpFecha.Value, Convert.ToInt32(tipoInasistencia.Text));

            limpiar();
            MostrarInasistencias();
        }
Ejemplo n.º 2
0
 private void BtnAgregar_Click(object sender, EventArgs e)
 {
     try
     {
         if (Grupo.Text == "" || txtMatricula.Text == "")
         {
             MessageBox.Show("No puede ingresar inasistencia, aún faltan datos por completar", "Datos incompletos",
                             MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
         }
         else
         {
             inasistencias.agregar_inasistencias(IDGrupo, Matricula, dtpFecha.Value,
                                                 Convert.ToInt32(cbInasistencia.Text));
             limpiar();
             MostrarInasistencias();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show("Ha ocurrido un error" + ex, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }