Exemplo n.º 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;
        }
Exemplo n.º 2
0
 private void cboEstudiante_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (ES)
     {
         Evaluacions.llenarIndicadorEvaluado(ref cboIndicador, cboMateria.SelectedValue.ToString(), cboEstudiante.SelectedValue.ToString());
     }
 }
Exemplo n.º 3
0
 public Estudiante(Evaluacions eva, int idestudiante = 0)
 {
     InitializeComponent();
     evaluado          = eva;
     tbEstudiante.Text = eva.Estudiante;
 }