Thema
:
Delphi
for schleife will nicht
Einzelnen Beitrag anzeigen
toms
(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
#
2
Re: for schleife will nicht
16. Feb 2005, 13:47
Zitat:
for i:=0 to combobox.ControlCount do
Durchläuft nicht die Items der ComBobox.
Siehe OLH: ControlCount
Richtig:
markieren
Delphi-Quellcode:
for
i:=0
to
ComboBox.Items.Count -1
do
begin
...
end
;
Thomas
Zitat
toms
Öffentliches Profil ansehen
Mehr Beiträge von toms finden