private void cerrar() { fInfoCurso f = new fInfoCurso(user, curso); this.Hide(); f.ShowDialog(); this.Close(); }
private void dgvMisCursos_SelectionChanged(object sender, EventArgs e) { try { if (dgvMisCursos.SelectedRows.Count > 0) { int id = (int)dgvMisCursos.SelectedRows[0].Cells[0].Value; fInfoCurso info = new fInfoCurso(alumno, new Curso(id)); this.Hide(); info.ShowDialog(); this.Close(); } } catch (Exception ex) { MessageBox.Show("ERROR " + ex.Message); } }
private void bInfoCurso_Click(object sender, EventArgs e) { try { if (cursoSeleccionado == null) { throw new Exception("No hay ningun curso seleccionado"); } else { fInfoCurso info = new fInfoCurso(alumno, cursoSeleccionado); this.Hide(); info.ShowDialog(); this.Close(); } } catch (Exception ex) { MessageBox.Show("ERROR: " + ex.Message); } }
private void bInformacionCurso_Click(object sender, EventArgs e) { try { if (seleccionado == null) { throw new Exception("Ningún curso seleccionado"); } else { fInfoCurso infoCurso = new fInfoCurso(profesor, seleccionado); this.Hide(); infoCurso.ShowDialog(); this.Close(); } } catch (Exception ex) { MessageBox.Show("ERROR: " + ex.Message); } }