hello,
I'm using a TTntComboBox in Delphi with csDropDownList style. It has a large list of elements (example AA, AB, AC, BB, BC, DA, ...)
Please help me with the following issue: when pressing a key, the TTntComboBox should drop down and select the item that starts with the pressed key; if you press that key again, it selects the next item and so on
example: you press B, combobox opens and you have BB selected; you press B again and you have BC selected; you press B again and it returns to BB element
example 2: you press C, nothing happens because there isn't anything that starts with C
I tried to get trough the items of the combobox while keypressed and open the combobox if finding something + selecting it, but didn't have much success
Best regards