Einzelnen Beitrag anzeigen

Benutzerbild von jim_raynor
jim_raynor

Registriert seit: 17. Okt 2004
Ort: Berlin
1.251 Beiträge
 
Delphi 5 Standard
 
#3

Re: case of mit for schleife verbinden

  Alt 16. Feb 2005, 11:51
Zitat von herrentor:
tag zusammen,

ich möchte case of mit einer for schleife verbinden. er soll für die itemindex 1 bis controlcount einer combobox eine funktion ausführen. also für alle bis auf itemindex=0.

case combobox not
0:

gibt es ja nicht.

Delphi-Quellcode:

for i:=0 to combobox.ControlCount do
 begin
 case combobox.ItemIndex of
  i: begin
     showmessage('');
     end;
1. Was machst du da?
2. Was willst du?
3. ComboBox und ControlCount?

Ohne zu wissen was du wirklich machen möchtest:

Delphi-Quellcode:
for i:=1 to Combobox.Items.Count-1 do
begin
  showMessage(ComboBox.Items[i]);
end;
Beginn deine Schleife bei 1. ControlCount gibt es doch bei der Combobox und wenn ja, ist es nicht das was du möchtest. Items ist eine StringList mit allen Einträgen der Combobox. Count-1 weil die Indizierung bei 0 beginnt.
Christian Reich
Schaut euch mein X-COM Remake X-Force: Fight For Destiny ( http://www.xforce-online.de ) an.
  Mit Zitat antworten Zitat