Subject Re: TIB_LookupCombo Font vanishing while typing
Author
IBObjects v5.7.3.2238

I have done some research and I think the best change to
fix this is to modify the ...\ibobjects\source\visual\IB_Grid.pas
unit, line 9585.  Reverse the colors of the brush and font.

---- Original ----
      if Focused then
      begin
        Brush.Color := clHighlight;
        Font.Color := clHighlightText;
      end;

---- New Text ----
      if Focused then
      begin
        Brush.Color := clHighlightText;
        Font.Color := clHighlight;
      end;

-----
Remember to recompile this code you must add to 
your Library Paths:
   ...\ibobjects\source\visual
   ...\ibobjects\source\common

Good Luck
Michael Horne