Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: Zeitdifferenz berechnen (negativwert)
10. Jun 2011, 21:29
Delphi-Quellcode:
function FormatDateTimeSigned(const Format: string; DateTime: TDateTime): string;
begin
result := SysUtils.FormatDateTime(Format, abs(DateTime));
if DateTime < 0 then
result := '-' + result;
end;
|