private void btnEditar_Click(object sender, EventArgs e) { FormRegistraryActualizarProducto from = new FormRegistraryActualizarProducto(); Producto p = new Producto(); if (tabla.SelectedRows.Count > 0) { p.id = tabla.CurrentRow.Cells[0].Value.ToString(); p.nombre = tabla.CurrentRow.Cells[1].Value.ToString(); p.descripcion = tabla.CurrentRow.Cells[2].Value.ToString(); p.cantidad = int.Parse(tabla.CurrentRow.Cells[3].Value.ToString()); p.precio_compra = Decimal.Parse(tabla.CurrentRow.Cells[4].Value.ToString()); p.precio_venta = Decimal.Parse(tabla.CurrentRow.Cells[5].Value.ToString()); from.cargarproducto(p); from.Show(); } else { MessageBox.Show("debe seleccionar fila"); } }
private void btnGuardarCambios_Click(object sender, EventArgs e) { FormRegistraryActualizarProducto from = new FormRegistraryActualizarProducto(); from.Show(); }