private void BotonAgregar_Click(object sender, EventArgs e) { DocentesCursosDesktop docentesCursosDesktop = new DocentesCursosDesktop(DocentesCursosDesktop.ModoForm.Alta); docentesCursosDesktop.ShowDialog(); this.Listar(); }
private void tsbNuevo_Click(object sender, EventArgs e) { DocentesCursosDesktop form = new DocentesCursosDesktop(ApplicationForm.ModoForm.Alta, CursoActual); form.ShowDialog(); this.Listar(); }
private void tsbNuevo_Click(object sender, EventArgs e) { DocentesCursosDesktop dcd = new DocentesCursosDesktop(); dcd.ShowDialog(); this.Listar(); }
private void tsbEditar_Click(object sender, EventArgs e) { int ID = int.Parse(((DataRowView)this.dgvDocentesCursos.SelectedRows[0].DataBoundItem)["IdDictado"].ToString()); DocentesCursosDesktop form = new DocentesCursosDesktop(ID, ApplicationForm.ModoForm.Modificacion, CursoActual); form.ShowDialog(); this.Listar(); }
private void tsbEditar_Click(object sender, EventArgs e) { int ID = ((Entidades.DocenteCurso) this.dataGridView1.SelectedRows[0].DataBoundItem).Id; DocentesCursosDesktop dcd = new DocentesCursosDesktop(ID, ApplicationForm.ModoForm.Modificacion); dcd.ShowDialog(); this.Listar(); }
private void BotonBorrar_Click(object sender, EventArgs e) { if (this.DataGridViewDocentesCursos.SelectedRows is null) { } else { int id = ((Business.Entities.DocenteCurso) this.DataGridViewDocentesCursos.SelectedRows[0].DataBoundItem).ID; DocentesCursosDesktop docentesCursosDesktop = new DocentesCursosDesktop(id, DocentesCursosDesktop.ModoForm.Baja); docentesCursosDesktop.ShowDialog(); } this.Listar(); }
private void tsbNuevo_Click_1(object sender, EventArgs e) { try { DocentesCursosDesktop ud = new DocentesCursosDesktop(ApplicationForm.ModoForm.Alta); ud.ShowDialog(); } catch (Exception Error) { NotificarError(Error); } finally { Listar(); } }
private void tsbEliminar_Click_1(object sender, EventArgs e) { if (dvgInscripcionesAlumnos.SelectedRows != null) { int id = ((Docentes_cursos)dvgInscripcionesAlumnos.SelectedRows[0].DataBoundItem).id_dictado; try { DocentesCursosDesktop ud = new DocentesCursosDesktop(ApplicationForm.ModoForm.Baja, id); ud.ShowDialog(); } catch (Exception Error) { NotificarError(Error); } finally { Listar(); } } else if (dvgInscripcionesAlumnos.SelectedRows == null) { MessageBox.Show("Error", "Seleccione un Dictado\n para eliminar", MessageBoxButtons.OK, MessageBoxIcon.Error); } }