Registriert seit: 22. Okt 2003
Ort: Berlin
661 Beiträge
Delphi 7 Enterprise
|
Re: Listbox ohne Wertbezeichnung aus INI füllen?
27. Jul 2009, 20:08
Delphi-Quellcode:
try
for i := 0 to Pred(ListBox2.Items.Count) do
begin
// ab dieser Zeile zickt der Compiler
s := Copy(Pos('=',ListBox2.Items[i]) + 1, Length(ListBox2.Items[i]));
ListboxBox2.Items[i] := s;
end;
finally
ListBox2.Items.EndUpdate;
end;
|