Thema: Delphi for schleife will nicht

Einzelnen Beitrag anzeigen

Benutzerbild von toms
toms
(CodeLib-Manager)

Registriert seit: 10. Jun 2002
4.648 Beiträge
 
Delphi XE Professional
 
#2

Re: for schleife will nicht

  Alt 16. Feb 2005, 13:47
Zitat:
for i:=0 to combobox.ControlCount do
Durchläuft nicht die Items der ComBobox.
Siehe OLH: ControlCount

Richtig:
Delphi-Quellcode:
for i:=0 to ComboBox.Items.Count -1 do
begin
 ...
end;
Thomas
  Mit Zitat antworten Zitat