Subject | Re: TIB_LookupCombo Font vanishing while typing |
---|---|
Author | |
Post date | 2015-05-12T18:43:51Z |
IBObjects v5.7.3.2238
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