Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Fehlermeldung "List Index Out Of Bounds (1)"?
3. Aug 2003, 12:20
Du musst Deine for-Schleife rückwärts durchlaufen
Code:
[color=#ff0000]for iFor := ListBox1.Items.Count -1 downto 0 do[/color]
begin
if ListBox1.Items.Strings[iFor] = text then
ListBox1.Items.Delete(iFor);
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|