Sometime is graphics bug (see on attached picture)
RAD studio XE2 (Upd4 HotFix1)
Replace this code to remove BUG in unit TBXDkPanels.
Message.wParam and Message.lParam are different types !
procedure TTBXPanelObject.WMEraseBkgnd(var Message: TMessage);
begin
if not DoubleBuffered or (LPARAM(Message.wParam) = Message.lParam) then
begin
if Color = clNone then
DrawParentBackground(Self, TWMEraseBkgnd(Message).DC, ClientRect)
else
FillRectEx(TWMEraseBkgnd(Message).DC, ClientRect, Color);
end;
Message.Result := 1;
end;
Issue imported from Google Code: https://code.google.com/p/tbxlib/issues/detail?id=4
Reported by pavel [at] tresnakovi.cz, Apr 7, 2013
What steps will reproduce the problem?
Sometime is graphics bug (see on attached picture)
RAD studio XE2 (Upd4 HotFix1)
Replace this code to remove BUG in unit TBXDkPanels.
Message.wParam and Message.lParam are different types !