예제 #1
0
 private void btnCalificar_Click(object sender, EventArgs e)
 {
     AlumnoInscripcion ai = new AlumnoInscripcion();
     ai.ID = (int)dgvAlumnosDocente.CurrentRow.Cells[0].Value;
     ai.Condicion = dgvAlumnosDocente.CurrentRow.Cells[4].Value.ToString();
     CalificarDesktop cd = new CalificarDesktop(ai);
     cd.Show();
 }
예제 #2
0
        private void btnCalificar_Click(object sender, EventArgs e)
        {
            AlumnoInscripcion ai = new AlumnoInscripcion();

            ai.ID        = (int)dgvAlumnosDocente.CurrentRow.Cells[0].Value;
            ai.Condicion = dgvAlumnosDocente.CurrentRow.Cells[4].Value.ToString();
            CalificarDesktop cd = new CalificarDesktop(ai);

            cd.Show();
        }