Zitat von
Toxman:
Er wollte eine Lösung haben, von performant hat niemand was gesagt
lol
Danke jetzt funktioniert es:
Delphi-Quellcode:
var
i: Int64;
begin
i := 0;
repeat
Label1.Caption := Format('%.14d',[i]);
inc(i);
Application.ProcessMessages;
until i = 10000000000000;
end;