Hallo sveta,
hier ist noch ein Ansatz:
Delphi-Quellcode:
var
DT : TDateTime;
s : string;
begin
DT := StrToDateTime('04.09.2006 07:00:00') - StrToDateTime('29.08.2006 10:30:00');
s := IntToStr(Trunc(24 * DT)) + FormatDateTime(':nn:ss', DT);
end;
Gruß Hawkeye