Hallo,
habe so angefangen:
Delphi-Quellcode:
procedure TFOrm1.DBGrid1DrawColumnCell(Sender: TObject;
const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState);
begin
if (DataModule1.Query1['PLANUNGSTERMIN'] < Date) AND (Column.FieldName = 'PLANUNGSTERMIN') then
begin
DBGrid1.Canvas.Brush.Color := clyellow;
DBGrid1.DefaultDrawColumnCell(Rect, DataCol, Column, State);
end;
end;
So ändere ich die Farbe in einer Zelle, nur wie mache ich das mit der fixierten Zelle ganz links ?