Exemplo n.º 1
0
        private void btnInscribir_Click(object sender, EventArgs e)
        {
            int idCurso = (int)dgvCursos.CurrentRow.Cells[0].Value;
            AsignacionDocenteDesktop add = new AsignacionDocenteDesktop(idCurso);

            add.Show();
        }
Exemplo n.º 2
0
 private void btnInscribir_Click(object sender, EventArgs e)
 {
     int idCurso = (int)dgvCursos.CurrentRow.Cells[0].Value;
     AsignacionDocenteDesktop add = new AsignacionDocenteDesktop(idCurso);
     add.Show();
 }