private void btnEditar_Click(object sender, EventArgs e) { try { frmCliente clienteModificar = new frmCliente((Cliente)dgvCliente.CurrentRow.DataBoundItem); clienteModificar.ShowDialog(); cargarGrilla(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void datosBasicosToolStripMenuItem2_Click(object sender, EventArgs e) { frmCliente frmCliente = frmCliente.GetInstancia(); frmCliente.MdiParent = this; frmCliente.Show(); frmCliente.Guardar = Convert.ToString(this.SQL_Guardar); frmCliente.Editar = Convert.ToString(this.SQL_Editar); frmCliente.Eliminar = Convert.ToString(this.SQL_Eliminar); frmCliente.Consultar = Convert.ToString(this.SQL_Consultar); frmCliente.Imprimir = Convert.ToString(this.SQL_Imprimir); }
private void btnModificar_Click(object sender, EventArgs e) { Cliente modificado; try { modificado = (Cliente)dgvClientes.CurrentRow.DataBoundItem; frmCliente modi = new frmCliente(modificado); modi.ShowDialog(); cargar(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } }
private void DGFiltro_General_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { try { frmCliente frmCli = frmCliente.GetInstancia(); string idbanco, asesor, documento; if (frmCli.Examinar) { idbanco = this.DGFiltro_General.CurrentRow.Cells[0].Value.ToString(); asesor = this.DGFiltro_General.CurrentRow.Cells[1].Value.ToString(); documento = this.DGFiltro_General.CurrentRow.Cells[2].Value.ToString(); frmCli.setEmpleado(idbanco, documento, asesor); this.Hide(); } } catch (Exception) { throw; } }
private void btnAgregarEmpl_Factura_Click(object sender, EventArgs e) { try { frmCliente frmCli = frmCliente.GetInstancia(); //Variables Para Los Filtros string idempleado, empleado, documento; if (frmCli.Filtro) { idempleado = this.DGFiltro_Facturacion.CurrentRow.Cells[0].Value.ToString(); empleado = this.DGFiltro_Facturacion.CurrentRow.Cells[2].Value.ToString(); documento = this.DGFiltro_Facturacion.CurrentRow.Cells[3].Value.ToString(); frmCli.setEmpleado(idempleado, documento, empleado); this.Hide(); } } catch (Exception ex) { MessageBox.Show(ex.Message + ex.StackTrace); } }
private void btnAgregar_Click(object sender, EventArgs e) { frmCliente formularioCliente = new frmCliente(); formularioCliente.ShowDialog(); }