Difference between revisions of "ConvertTime"

From SCAR Divi Manual
Jump to: navigation, search
Line 8: Line 8:
  
 
==Description==
 
==Description==
Converts a number of milliseconds given in '''ms''' into a number of hours, minutes and seconds returned in '''h''', '''m''' and '''s'''.
+
Converts a number of milliseconds given in '''MS''' into a number of hours, minutes and seconds returned in '''H''', '''M''' and '''S'''.
  
 
==Example==
 
==Example==

Revision as of 13:18, 4 April 2012

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