Guys, I have an editable combobox in winform which is also serving as a data filter for another control depending on the selected item. Using selected item or value change event is not enough to call the filter method as the combobox is editable with autocomplete enabled.
What event should I use to trigger the filter method for the other control?
Loading
Rajanikant HawaldarPosted Oct 3, 2022, 9:25 AM
Both events in combination
Arjun KGPosted Oct 3, 2022, 10:18 AM
It works, I just realized that there's a bug in my code. Instead of changing the values in the other control to the filter values, I rather was adding new values to the control which gave me the impression that the filter was providing the default 'all values'.
Thanks for your help