Difference between revisions of "ConvertTime"
From SCAR Divi Manual
Line 24: | Line 24: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | |||
[[Category:Time Functions]] | [[Category:Time Functions]] |
Latest revision as of 17:38, 1 June 2012
Contents
Definition
procedure ConvertTime(const MS: Integer; out H, M, S: Integer);
Availability
SCAR Divi 3.00 > Current
Description
Converts a number of milliseconds given in MS into a number of hours, minutes and seconds returned in H, M and S.
Example
var h, m, s: Integer; begin ConvertTime(1000000, h, m, s); WriteLn('1000000ms is ' + IntToStr(h) + 'h, ' + IntToStr(m) + 'm, ' + IntToStr(s) + 's'); end.
Output:
1000000ms is 0h, 16m, 40s