Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
FirstDate, SecondDate: TDateTime;
begin
FirstDate := EncodeDateTime(2003, 7, 7, 10, 0, 0, 0);
SecondDate := EncodeDateTime(2003, 7, 8, 18, 0, 0, 0);
ShowMessage(FloatToStr(HourSpan(FirstDate, SecondDate)));
end;
ShowMessage(IntToStr(HoursBetween(FirstDate, SecondDate)));