z.B. so:
Delphi-Quellcode:
mm_tot := mm_1 + mm_2 + mm_3 + mm_4 + mm_5;
hh_tot := (mm_tot div 60);
mm_tot := mm_tot Mod 60;
if mm_tot < 10 then str_mtime := (inttostr(hh_tot)+'''' + '0'+ IntToStr(mm_tot)) //hier
else str_mtime := (inttostr(hh_tot)+''''+IntToStr(mm_tot)); // und hier
lbl_mtime_udp.Caption := str_mtime;
ist zwar nicht perfekt, aber funktioniert