Winforms Comobobox with filter
How can i make my combobox have a filter so that when i type certain letters or a name , it gets filtered according to that.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
shosho shoshoPosted May 12, 2015, 10:01 AM
comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend; comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;
Dipankar BiswasPosted May 12, 2015, 8:39 AM
Check this links..http://stackoverflow.com/questions/27784473/filtering-combo-box-items-using-text-search-in-c-sharp-windows-form
http://stackoverflow.com/questions/15547812/c-sharp-combobox-filtering-one-combobox-based-on-the-value-of-another-combobox