Andere (triviale) Möglichkeit:
Delphi-Quellcode:
Sekunde := 00;
if Sekunde < 10 then Label1.Caption := '0' + IntToStr(Sekunde)
else Label1.Caption := IntToStr(Sekunde);
Label1.Caption := IntToStr(Sekunde);
if Sekunde < 10 then Label1.Caption := '0' + Label1.Caption;
Für negative Zeiten geht das allerdings nicht.
Gruss Reinhard