Hello,
My previous path which does not provide the desired result:
procedure TForm1.GridGetCellColor(Sender: TObject; ARow, ACol: Integer; AState: TGridDrawState; ABrush: TBrush; AFont: TFont);
begin
if ARow > 0 then
begin
if Grid.IsSelected(ACol,ARow) then
ABrush.Color := clYellow
else
ABrush.Color := clWhite;
end;
end;
Maybe someone knows a way
regards
Thoren