Example #1
0
        private void btnBuscar_Click(object sender, EventArgs e)
        {
            Producto busqueda = inv.buscar(txtBuscar.Text);

            if (busqueda == null)
            {
                MessageBox.Show("El producto no existe");
            }
            else
            {
                txtNombre.Text   = busqueda.getNombre();
                txtCodigo.Text   = busqueda.getCodigo();
                txtCantidad.Text = busqueda.getCantidad().ToString();
                txtPrecio.Text   = busqueda.getPrecio().ToString();
            }
        }