private void btnBuscar_Click(object sender, EventArgs e) { if (cbbBuscarPor.Text == "Descripcion") { if (txtBuscar.Text != "") { dProducto.Buscar = txtBuscar.Text; dProducto.BuscarProductoPorDescripcionParaPedidos(dgvProductos); } else { btnBuscar.Enabled = false; } } else if (cbbBuscarPor.Text == "Codigo") { if (txtBuscar.Text != "") { dProducto.Buscar = txtBuscar.Text; dProducto.BuscarProductoPorCodigoParaPedidos(dgvProductos); } else { btnBuscar.Enabled = false; } } else if (cbbBuscarPor.Text == "Categoria") { if (txtBuscar.Text != "") { dProducto.Buscar = txtBuscar.Text; dProducto.BuscarProductoPorCategoriaParaPedidos(dgvProductos); } else { btnBuscar.Enabled = false; } } else { cbbBuscarPor.Text = "Descripcion"; if (txtBuscar.Text != "") { dProducto.Buscar = txtBuscar.Text; dProducto.BuscarProductoPorDescripcionParaPedidos(dgvProductos); } else { btnBuscar.Enabled = false; } } }