Rohan Varshney
Rohan Varshney

Reputation: 5

Search in the combobox

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

Answers (2)

mbm
mbm

Reputation: 955

Try this:

        comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
        comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;

Upvotes: 2

Batuu
Batuu

Reputation: 595

Your looking for the autofilter combobox. here, here and here

Upvotes: 0

Related Questions