Subject Re: [IBO] TIB_LookupCombo - Cannot display 1 field only
Author tickerboo2002
> The DisplayField is the field displayed in the textbox portion of
the control.
> If you want to restrict the fields displayed in the dropdown (which
is a
> tib_customgrid) use the VISIBLE property in the Fields Property
> editor. Fields are visible by default, so you only need to set the
> property on fields you don't want to see in the grid.


drat! I knew it would be something simple. Thanks


One related question.

If my customer table has 4 entries:

Contact1
Contact2
Contact3
Contact4

which are all FK's into the contact table, it appears that in order
to have 4 lookup combos listing all the contacts, I need 4 queries
and 4 datasources to link up each combo.

I naively thught I could just add

contacts.contact_id=customers.contact1
contacts.contact_id=customers.contact2
contacts.contact_id=customers.contact3
contacts.contact_id=customers.contact4

to my contacts query keylinks. I was wrong.

Am I forced to use a query and a datasource for each TIB_LookupCombo?

TIA