Exemplo n.º 1
0
 public void ModificarCliente()
 {
     frmClientes frmClientes = new frmClientes();
     frmClientes.cliente = MapingEntidad(grdClientes.CurrentCell.RowIndex);
     frmClientes.ShowDialog();
     CargarClientes();
 }
Exemplo n.º 2
0
 private void frmClientes_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     frmClientes frmClientes = new frmClientes();
     frmClientes.cliente = MapingEntidad(e.RowIndex);
     frmClientes.ShowDialog();
     CargarClientes();
 }
Exemplo n.º 3
0
 private void button1_Click(object sender, EventArgs e)
 {
     frmClientes ventanaCliente = new frmClientes();
     ventanaCliente.ShowDialog();
     CargarClientes();
 }