Ne so geht es nicht. Es dürfte normalerweise auch kein ListViewItem stehen sondern wenn dann nur ImageIndex, geht aber trotzdem nicht.
Hier mal der codeteil:
Delphi-Quellcode:
...
with DownloadList.Items.Add do
begin
if ((sr.attr and faDirectory) <> faDirectory) then
if Caption = '*.txt' then
BILD 1 AUS IMAGELIST SOLL FÜR DIESEN ITEM GEZEIGT WERDEN
Caption := (sr.Name);
Subitems.Add(formatfloat('0.00',sr.Size / 1024)+' KB');
Subitems.Add(DateTimeToStr(FileDateToDateTime(sr.time)));
end;
...
mfg