private void btn_vernotas_Click(object sender, EventArgs e) { BuscarNotasxAlumno bnxa = new BuscarNotasxAlumno(); bnxa.txt_nomalumno.Text = dgvLis.CurrentRow.Cells["Nombre"].Value.ToString(); bnxa.txt_apellidoalumno.Text = dgvLis.CurrentRow.Cells["Apellido"].Value.ToString(); bnxa.cmb_curso.Text = Convert.ToString(dgvLis.CurrentRow.Cells["Cursos"].Value); bnxa.cmb_ciclo.Text = dgvLis.CurrentRow.Cells["Ciclo"].Value.ToString(); bnxa.cmb_curso.Enabled = false; bnxa.cmb_ciclo.Enabled = false; bnxa.txt_nomalumno.ReadOnly = true; bnxa.txt_apellidoalumno.ReadOnly = true; bnxa.Show(); }
private void buscarNotasxalumnoToolStripMenuItem_Click(object sender, EventArgs e) { BuscarNotasxAlumno notas = new BuscarNotasxAlumno(); notas.Show(); }