Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
AW: Vorstellung des Codes zur übersichtlichen Anzeige von Zeiten
26. Mär 2012, 00:57
Delphi-Quellcode:
function ZeitString(msec: LongWord): string;
var
time: TDateTime;
s: string;
begin
//if msec = 0 then Exit('none');
time := msec / MSecsPerDay;
if time >= 1 then s := Format(', %d "day"', Trunc(time));
if HourOf(time) <> 0 then s := s + ', h "hrs"';
if MinuteOf(time) <> 0 then s := s + ', m "min"';
if SecondOf(time) <> 0 then s := s + ', s "sec"';
if MilliSecondOf(time) <> 0 then s := s + ', z "ms"';
Result := FormatDateTime(Copy(s, 3), time);
end;
$2B or not $2B
Geändert von himitsu (26. Mär 2012 um 01:11 Uhr)
|
|
Zitat
|