Combo Box Type-Ahead

  • Thread starter Thread starter Bill Sturdevant
  • Start date Start date
B

Bill Sturdevant

I have a combo box with 4 columns.

The columns are: RecID(0"), EntryCode(1"), EntryType(1"),
EntryText(3")

I can click in the combo box and start typing an EntryCode
and the type-ahead fieature works correctly.

BUT, I want to do a type ahead on EntryText, without
making it the first visible column.

Is this possible, and how do I do it?
 
Hi Bill,

I don't think you can do this. Instead you might want to create an unbound
textbox and set it's control source to the EntryCode column of the combo (so
that it is visible) and make EntryText the first non-zero width column.
 
Back
Top