TimerStart Function

Action

Starts a timer.

Syntax

TimerStart (hTimer)
Variable Description
hTimer A handle to the timer to start. HTIMER.

Notes

TimerStart starts the specified timer. The timer will record the time that elapses until you pause or stop it.

Example

HTIMER TotalTimer
TotalTimer = TimerCreate () // make a timer handle
TimerStart (TotalTimer) // initialize & start a timer