private void btnAgregar_Click(object sender, EventArgs e) { if (oSesion.ComprobarPermiso(14)) { try { SeccionesEdicion f = new SeccionesEdicion(); f.ShowDialog(); Cargar(); } catch { } } }
private void btnEditar_Click(object sender, EventArgs e) { if (oSesion.ComprobarPermiso(14)) { try { if (MessageBox.Show("¿Realmente desea EDITAR el registro seleccionado?", "Pregunta", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { SeccionesEdicion f = new SeccionesEdicion(); f.txbIDSeccion.Text = dtgSecciones.CurrentRow.Cells["ID"].Value.ToString(); f.txbDescripcion.Text = dtgSecciones.CurrentRow.Cells["Seccion"].Value.ToString(); f.cbbTurno.Text = dtgSecciones.CurrentRow.Cells["Turno"].Value.ToString(); f.txbAula.Text = dtgSecciones.CurrentRow.Cells["Aula"].Value.ToString(); f.txbCupo.Text = dtgSecciones.CurrentRow.Cells["Cupo"].Value.ToString(); //f.cbbGrados.DisplayMember = dtgSecciones.CurrentRow.Cells["Grado"].Value.ToString(); f.ShowDialog(); Cargar(); } } catch { } } }