Function Reference

_TicksToTime

Converts the specified tick amount to hours, minutes, and seconds.

#Include <date.au3>
_TicksToTime ( $iTicks, $iHours, $iMins, $iSecs )

 

Parameters

$iTicks Tick amount.
$iHours Variable to store the hours.
$iMins Variable to store the minutes.
$iSecs Variable to store the seconds.

 

Return Value

Success: Returns 1.
Failure: Returns 0.
@Error: 0 = No error.
1 = $iTicks isn't an integer.

 

Remarks

None.

 

Related

_TimeToTicks

 

Example