Registriert seit: 22. Mär 2005
Ort: Dingolfing
4.129 Beiträge
Turbo Delphi für Win32
|
Re: Mehrspaltige Text/Bild ListBox?
9. Dez 2005, 21:22
Ahja. Ich weiß jetzt, wie es geht. Ich habe es jetzt so gemacht:
Delphi-Quellcode:
for I:=0 to high(array) do
begin
lstview.items.add;
with listview.items.item[listview.items.count-1] do
begin
Caption:='Titel';
SubItems.Add('Untereintrag1');
SubItems.Add('Untereintrag2');
SubItems.Add('Untereintrag3');
end;
end;
Und es funktioniert sogar!
Manuel Eberl „The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.“
- Terry Pratchett
|