I’m trying to create an edit box and I want it to be able to auto-append the text entered while typing. Text would be appended with “suggestions” from a text file.
Let’s say I have these in my suggestion file:
Marilyn Monroe
Marlon Brando
Mike Myers
As I start typing “M” in the edit box, the remaining would appear highlighted(or not):
“arilyn Monroe”
And as I keep typing “Mi” then “ke Myers” would appear at the end. I hope I’m making this clear enough for you guys! Thanks for your help!
You can implement this feature easily using a
TComboBox.follow these steps :