What is the correct way to implement the "find as you type" behavior on a TComboBox descendant component whose style is csOwnerDrawFixed?
feedback
|
closed as not a real question by casperOne♦ Jan 26 at 21:23
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
...and in OnTimer you'll wrote your searching engine. Be sure that the first line here will be timIncSearch.Enabled:=False; Also because you use csOwnerDrawFixed perhaps it's better to enforce a repaint of your control. As an aside, - just guessing because you didn't give us many details - perhaps you must hook OnEnter and OnExit events to custom open and close the DropDown list. (Normaly, this is achieved by setting the AutoDropDown property accordingly)
...also take care here, perhaps you must have a 'case Key of' construct to handle the #13 separately (or whatever). Other hints:
| ||||
|
feedback
|
|
First you need to decide whether you need "*my_string*" or "my_string*" functionality, meaning deciding if you would search inside the strings or just from the beginning. When you have figured that out, then you would have to buld the index of all the words entered in the combo box and search it after every keystroke. I don't think that handling OnTimer is a right approach. I would rather use "OnChange" or similar. You could do it with sorted (dupignore) TStringList, or maybe build the index using hash tables (the implementation is up to you). The architecture depends on the max no of strings your combo could contain. If it is a significant number than you could use hash tables (one hash Cardinal pointing to multiple indexes : array, TList...) | |||
|
feedback
|