Thema: Delphi Repeat oder While?

Einzelnen Beitrag anzeigen

MathiasSimmack
(Gast)

n/a Beiträge
 
#7

Re: Repeat oder While?

  Alt 11. Apr 2004, 11:20
So macht man das ja auch nicht. Ich schreib immer
Delphi-Quellcode:
res := FindFirst(...);
while(res = 0) do
begin
  { mach was damit }

  res := FindNext(ds);
end;
  Mit Zitat antworten Zitat