Combobox databinding

  • Thread starter Thread starter Vanessa
  • Start date Start date
V

Vanessa

Hi all!

I have a dataset that is binding to a combobox of customers. When I am on
consult mode I'd like to show all customers, and it is working correctly.
Now, when I am including an order I would like to show just the customers who
are active (it is a flag on the dataset). How can I do this?

Thank you for any suggestion!
Vanessa
 
Filter?
Either on RowFilter on a DataView and bind to that, or stick a BindingSource
in the middle (set the BindingSource's DataSource as the table/view, and
bind the UI to the BindingSource), and set the Filter on the BindingSource.

Marc
 
Back
Top