private void btBuscarConsejero_Click(object sender, EventArgs e) { frmBuscarConsejero f = new frmBuscarConsejero(); if (f.ShowDialog() == DialogResult.OK) { this.consejeroSeleccionado = f.ConsejeroSeleccionado; this.txtNombre.Text = this.consejeroSeleccionado.NombreCompleto; f.Dispose(); this.actualizarTablaActividades(); this.dgvActividades.Enabled = true; } }
private void modificarToolStripMenuItem_Click(object sender, EventArgs e) { frmBuscarConsejero f = new frmBuscarConsejero(); if (f.ShowDialog() == DialogResult.OK) { f.Dispose(); } consejero = f.ConsejeroSeleccionado; btnAgregarConsejero.Enabled = false; btnEliminarConsejero.Enabled = true; guardarToolStripMenuItem.Enabled = true; txtNombreConsejero.Text = consejero.NombreCompleto; txtAreasIntConsej.Text = consejero.AreasInteres1; txtCargoConsej.Text = consejero.Cargo; txtCodigoConsej.Text = consejero.Codigo.ToString(); txtCorreoConsej.Text = consejero.Correo; txtDireccConsej.Text = consejero.Direccion; txtEmpresaConsej.Text = consejero.Empresa; txtObsConsej.Text = consejero.Observaciones; txtSectorConsej.Text = consejero.Sector; txtTelefConsej.Text = consejero.Telefono.ToString(); dtpFechaNacConsej.Text = consejero.FechaNacimiento.ToString("yyyy-MM-dd"); txtEspecialidad.Text = consejero.Especialidad; txtGradoConsej.Text = consejero.Grado; txtNombreConsejero.Enabled = true; txtAreasIntConsej.Enabled = true; txtCargoConsej.Enabled = true; txtCorreoConsej.Enabled = true; txtDireccConsej.Enabled = true; txtEmpresaConsej.Enabled = true; txtObsConsej.Enabled = true; txtSectorConsej.Enabled = true; txtTelefConsej.Enabled = true; dtpFechaNacConsej.Enabled = true; txtEspecialidad.Enabled = true; txtGradoConsej.Enabled = true; txtCodigoConsej.Enabled = false; }