private void btnEditar_Click(object sender, EventArgs e) { try { FrmProveedor EditarRegistro = new FrmProveedor(); EditarRegistro.FormClosed += new FormClosedEventHandler(ActualizarDatos); if (DataListado.SelectedRows.Count > 0) { Program.Evento = 1; EditarRegistro.txtID.Text = DataListado.CurrentRow.Cells[0].Value.ToString(); EditarRegistro.txtRazonSocial.Text = DataListado.CurrentRow.Cells[1].Value.ToString(); EditarRegistro.txtSectorComercial.Text = DataListado.CurrentRow.Cells[2].Value.ToString(); EditarRegistro.txtTipoDocumento.Text = DataListado.CurrentRow.Cells[3].Value.ToString(); EditarRegistro.txtNumeroDocumento.Text = DataListado.CurrentRow.Cells[4].Value.ToString(); EditarRegistro.txtDireccion.Text = DataListado.CurrentRow.Cells[5].Value.ToString(); EditarRegistro.txtTelefono.Text = DataListado.CurrentRow.Cells[6].Value.ToString(); EditarRegistro.txtEmail.Text = DataListado.CurrentRow.Cells[7].Value.ToString(); EditarRegistro.ShowDialog(); } else { MensajeError("Seleccione un registro de la tabla para modificar!!!"); } } catch (Exception ex) { MessageBox.Show("ERROR " + ex.Message + ex.StackTrace); } }
private void btnNuevo_Click(object sender, EventArgs e) { FrmProveedor NuevoRegistro = new FrmProveedor(); NuevoRegistro.FormClosed += new FormClosedEventHandler(ActualizarDatos); NuevoRegistro.ShowDialog(); }