Reputation: 5
I am doing a project in which I want that when I Press 'a' in combobox the words corresponding which is start From 'a' are show into the combobox.
Upvotes: 0
Views: 1749
Reputation: 955
Try this:
comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;
Upvotes: 2