filter bindingsource

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to filter a bindingsource twice?

If I want to filter on gender, and filter on zip codes - can you do that
with a bindingsouce.filter method?

It always filters on the last filter request.
 
mafandon said:
Is it possible to filter a bindingsource twice?

If I want to filter on gender, and filter on zip codes - can you do that
with a bindingsouce.filter method?

It always filters on the last filter request.



yes you can you just combine filters using AND. Ex :
BindingSource.Filter = "(filterExpr1) AND (filterExpr2) AND ..."
 
Back
Top