procedure TMainFrm.DBGrid1DrawColumnCell(Sender: TObject;
  const Rect: TRect; DataCol: Integer; Column: TColumn;
  State: TGridDrawState);
begin
  if odd(RecNo)then
  begin
    Grid.Canvas.Font.Color := clTeal;
    Grid.DefaultDrawColumnCell(Rect, DataCol,Column, State);
  end
  else
  begin
    Grid.Canvas.Font.Color := clBlue;
    Grid.DefaultDrawColumnCell(Rect, DataCol,Column, State);
  end;
end;