Esempio n. 1
0
 private void btnBuscar_Click(object sender, EventArgs e)
 {
     if (cbbBuscarPor.Text == "Descripcion")
     {
         if (txtBuscar.Text != "")
         {
             dProducto.Buscar = txtBuscar.Text;
             dProducto.BuscarProductoPorDescripcion(dgvProductos);
         }
         else
         {
             btnBuscar.Enabled = false;
         }
     }
     else if (cbbBuscarPor.Text == "Codigo")
     {
         if (txtBuscar.Text != "")
         {
             dProducto.Buscar = txtBuscar.Text;
             dProducto.BuscarProductoPorCodigo(dgvProductos);
         }
         else
         {
             btnBuscar.Enabled = false;
         }
     }
     else if (cbbBuscarPor.Text == "Categoria")
     {
         if (txtBuscar.Text != "")
         {
             dProducto.Buscar = txtBuscar.Text;
             dProducto.BuscarProductoPorCategoria(dgvProductos);
         }
         else
         {
             btnBuscar.Enabled = false;
         }
     }
     else
     {
         cbbBuscarPor.Text = "Descripcion";
         if (txtBuscar.Text != "")
         {
             dProducto.Buscar = txtBuscar.Text;
             dProducto.BuscarProductoPorDescripcion(dgvProductos);
         }
         else
         {
             btnBuscar.Enabled = false;
         }
     }
 }