예제 #1
0
        private void cboEstudiante_DropDownClosed(object sender, EventArgs e)
        {
            Evaluacions.llenarIndicadorEvaluado(ref cboIndicador, cboMateria.SelectedValue.ToString(), cboEstudiante.SelectedValue.ToString());
            DataTable dt = util.ValoresEnTabla("select * from evaluacion where idevaluacion=0");

            dtgvEvaluacion.DataSource = dt;
        }
예제 #2
0
 private void cboEstudiante_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (ES)
     {
         Evaluacions.llenarIndicadorEvaluado(ref cboIndicador, cboMateria.SelectedValue.ToString(), cboEstudiante.SelectedValue.ToString());
     }
 }
예제 #3
0
 public Estudiante(Evaluacions eva, int idestudiante = 0)
 {
     InitializeComponent();
     evaluado          = eva;
     tbEstudiante.Text = eva.Estudiante;
 }