Einzelnen Beitrag anzeigen

shmia

Registriert seit: 2. Mär 2004
5.508 Beiträge
 
Delphi 5 Professional
 
#14

Re: ListBox1.Items.LoadFromFile('test.txt');

  Alt 12. Sep 2007, 19:11
Zitat von taktaky:
Delphi-Quellcode:
aListBox.items.Add(aStringList[2]); // so will ich nicht
aListBox.items[3].Add(aStringList[2]); // so wunschte ich, aber was fehlt ?
Delphi-Quellcode:
// ganz logisch, man muss erst mal dafür sorgen, dass genügend Zeilen vorhanden sind
while aListBox.Items.count <= 4 do
   aListBox.Items.Add('');

// und dann entweder
   aListBox.items[3] := aStringList[2]; // Zeile 4 (Index=3) komplett ersetzen
   aListBox.items[3] := aListBox.items[3] + aStringList[2]; // oder anhängen
Andreas