@DeddyH: Das geht doch auch schöner ohne Array
Delphi-Quellcode:
procedure TForm2.Button2Click(Sender: TObject);
var iZaehler: Integer;
sKstring: string;
begin
for izaehler := 1 to 100 do
begin
sKstring := sKstring + inttostr(iZaehler) + IfThen( izaehler <> 100, ', ', '' );
end;
memo1.Lines.add(sKstring);
end;
Und falls das IfThen nicht beim Delphi dabei ist
Delphi-Quellcode:
function IfThen( BoolValue : Boolean; const TrueStr : string; const FalseStr : string = '' ) : string;
begin
if BoolValue then
Result := TrueStr
else
Result := FalseStr;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)