Hi dahead, was deine Loesung angeht blick ich noch nicht ganz durch.
Also die 4e Spalte beinhaltet die Groessen und die 6e Spalte den Speed.
Ich beschraenke mich erstmal auf die Groesse und arbeite mal mit der Loesung von shmia.
Jetzt weiss ich aber nicht was ich wo aendern soll in den Code, ich nehme an irgendwo hier:
Delphi-Quellcode:
//Texte je nach Tag der Spalte unterschiedlich vergleichen
case (Sender as TListView).Columns[ColumnToSort].Tag of
//Integer-Werte
1: Compare := StrToInt(TextToSort1)-StrToInt(TextToSort2);
//Float-Werte
2: begin
Compare := 0;
if StrToFloat(TextToSort1) > StrToFloat(TextToSort2) then
Compare := Trunc(StrToFloat(TextToSort1)-StrToFloat(TextToSort2))+1;
if StrToFloat(TextToSort1) < StrToFloat(TextToSort2) then
Compare := Trunc(StrToFloat(TextToSort1)-StrToFloat(TextToSort2))-1;
end; //2
//DateTime-Werte
3: begin
Compare := 0;
if StrToDateTime(TextToSort1) > StrToDateTime(TextToSort2) then
Compare := Trunc(StrToDateTime(TextToSort1)-StrToDateTime(TextToSort2))+1;
if StrToDateTime(TextToSort1) < StrToDateTime(TextToSort2) then
Compare := Trunc(StrToDateTime(TextToSort1)-StrToDateTime(TextToSort2))-1;
end; //3
//Alles andere sind Strings
else
Compare := CompareText(TextToSort1,TextToSort2);
end; //case (Sender as TListView).Columns[ColumnToSort].Tag of