Reputation: 97
i would like to write in MFC combobox that behave like the combo in the IE8 address bar. with the option of auto complete (which it is a property on the combo - right?) and the delete option on the right (is the drop down is a list control?)
Upvotes: 0
Views: 8689
Reputation: 15281
Check Using Autocomplete.
You can access the edit control in a CComboBoxEx using the GetEditCtrl method.
Upvotes: 0