Example #1
0
 private void Rechercher_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(Txt_Ref.Text))
     {
         DG_Prod.DataSource = ProduitDAO.List_Prod_Ref(Txt_Ref.Text);
     }
     else if (!string.IsNullOrEmpty(Txt_Desig.Text))
     {
         DG_Prod.DataSource = ProduitDAO.List_Prod_Des(Txt_Desig.Text);
     }
     else if (!string.IsNullOrEmpty(Cmb_Categ.Text))
     {
         DG_Prod.DataSource = ProduitDAO.List_Prod_ParCateg(Cmb_Categ.Text);
     }
 }