private void btnEditar_Click(object sender, EventArgs e) { try { DialogResult result; this.Invoke((MethodInvoker) delegate { frmCuentaBancos frm = new frmCuentaBancos(); frm.frmParentName = this.Name; frm.cuentaBancosID = Convert.ToInt32(dgvCuentaBancos.SelectedRows[0].Cells[6].Value); frm.Evento = GetEnum.Eventos.edit; frm.mode = frmBase.frmRegistroBase.Mode.modal; result = frm.ShowDialog(this); frm.Close(); frm.Dispose(); listEntidadFinanciera(Convert.ToInt32(cboTipoEntidadFinanciera.SelectedValue)); }); } catch (Exception ex) { ucMsgBox1.ShowMessageError("Error al cargar editar cuentas de bancos - Error: " + ex.Message); } }
private void btnNuevo_Click(object sender, EventArgs e) { try { DialogResult result; this.Invoke((MethodInvoker) delegate { frmCuentaBancos frm = new frmCuentaBancos(); frm.frmParentName = this.Name; //frm.idInversion = idInversion; frm.Evento = GetEnum.Eventos.insert; frm.mode = frmBase.frmRegistroBase.Mode.modal; result = frm.ShowDialog(this); frm.Close(); frm.Dispose(); listEntidadFinanciera(Convert.ToInt32(cboTipoEntidadFinanciera.SelectedValue)); }); } catch (Exception ex) { ucMsgBox1.ShowMessageError("Error al crear una nueva cuenta de bancos - Error: " + ex.Message); } }