Dankeschön für eure Hilfe.
Gilt das dann für alle Spalten?
Delphi-Quellcode:
procedure TDemoForm.AdvStringGridGetFormat(Sender: TObject; ACol: Integer;
var AStyle: TSortStyle; var aPrefix, aSuffix: String);
begin
with Sender as TAdvStringGrid do
case ACol - FixedCols of
1:
begin
AStyle := ssNumeric;
aSuffix := SIZE_SUFFIX;
end;
else
AStyle := ssAlphabetic;
end;
end;
...oder muss ich
Delphi-Quellcode:
with AdvStringGrid do
SortByColumn(SIZE_COLINDEX);
für jede Spalte extra anlegen?