Subject Re: [IBO] How to use TIB_LookupCombo as a Quicken-style incremental scearch
Author Florian Hector
> So, I want for the user to be able to type the first
> letter in the long description field, and have the
> control move to the first record containing that
> letter. Typing the second letter would make the
> control move to the first record matching both
> letters, etc.
>
> Right at the moment, the TIB_LookupCombo control I'm
> using won't even respond to keystrokes. I have to
> actually use the mouse point-and-click style from the
> drop down.

What you have to do is to define OrderingLinks of the LookUp Dataset. The
Dataset must be ordered by the column you want to find the entries matching
your keystrokes. Plus, the LookUpCombo must have SearchKeyByKey and
FindNearest enabled.
Once you have it working so far, you can even embed this control into a
grid.
If you plan to keep using IBO, do yourself a favor and get the Getting
Started Guide from the IBO Website.

Florian