tags:

views:

227

answers:

1

The Windows Forms ComboBox control only offers partial find-as-you-type functionality - it only searches for the first letter. For example if you type "c" and "a", don't expect "California" to become selected - instead you'll land on a state starting with "a".

Somehow, perhaps through Firefox, I got used to being able to find items by typing out the first several letters of the item. This is particularly helpful if the items are not sorted in alphabetical order for one reason or another.

Is there a way to enable find-as-you-type for WinForms combo boxes that ideally doesn't involve a whole lot of coding or paying for third-party components?

+1  A: 
Mahin