Subject RE: [IBO] Re: TIB_LookupCombo Font vanishing while typing
Author IBO Support List
Please confirm if this corrects the behavior.
I can include this fix in IBO for my next release.
 
Thanks,
Jason Wharton
 


From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com]
Sent: Tuesday, May 12, 2015 11:44 AM
To: IBObjects@yahoogroups.com
Subject: [IBO] Re: TIB_LookupCombo Font vanishing while typing

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