Einzelnen Beitrag anzeigen

Benutzerbild von Uncle Cracker
Uncle Cracker

Registriert seit: 30. Mär 2003
Ort: Freital
694 Beiträge
 
#6

Re: String formatieren in einer Schleife

  Alt 22. Feb 2005, 21:28
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;
I wish it was legal to marry software because I'm madly in love with Delphi...
  Mit Zitat antworten Zitat