Posted 28 April 2018, 5:01 pm EST
OK, a little more detail . . .
In the above situation, the suggested item WILL show up in the text part of the drop down if the suggested item also appears in the items list. In the standard, non c1comboBox, the suggested item will appear even if the item is not in the itemlist.
use the below example with a C1ComboBox and a standard comboBox, type in “J” into the combo box and the suggestions January, June and July will show up. If you select “June” from the suggestion list the C1ComboBox does not update the text and the standard combo box does.
ComboBox1.AutoCompleteMode = AutoCompleteMode.Suggest
ComboBox1.AutoCompleteSource = AutoCompleteSource.CustomSource
ComboBox1.Items.AddRange(New String() {“January”})
ComboBox1.AutoCompleteCustomSource.AddRange(New String() {
“January”,
“February”,
“March”,
“April”,
“May”,
“June”,
“July”,
“August”,
“September”,
“October”,
“November”,
“December”
})