Subject Re: [IBO] Re: As I can avoid the blue color in the active cell of a read only TIB_Gr
Author Paul Vinkenoog
Hello Apicito,

> Does he forgive the abuse, and the same thing for a TIb_LookUpCombo?
> I not find a similar property.

You can reach all the properties of the TIB_LookupCombo's drop-down
list via the PopupList property. But you have to do it in code, like
this:

MyLookupCombo->PopupList->IndicateHighLight = false; // (BCB)
MyLookupCombo.PopupList.IndicateHighLight := false; // (Delphi)

But I think this only works for the dropped down list. Not sure if you
can remove the highlight color from the control if the list is not
dropped down. Well, you can remove focus from the LookupCombo in an
OnCloseUp event handler.


Greetings,
Paul Vinkenoog