Hallo,
TListView.CustomSort erwartet eine einfache Funktion, keine Methode:
Delphi-Quellcode:
function CustomSortProc(Item1, Item2: TListItem; ParamSort: integer): integer; stdcall;
begin
Result := -CompareText(Item1.Caption, item2.Caption);
end;
Gruß Hawkeye
// Edit: "stdcall" vergessen...