Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 613 Bytes

File metadata and controls

22 lines (15 loc) · 613 Bytes

Timer Event

The Timer Event fires each time a Timer has counted down the specified Interval of time.

Usage

Procedure tmrTimer.Timer

The Timer procedure is the place you put the code you want to run after each Timer Event has been reached. The Timer's interval is specified (in milliseconds) with the Timer's Interval property; a Timer is enabled if its Enabled property is .T. and the Interval is greater than 0.

Example

PROCEDURE Timer1.Timer
  WAIT WINDOW NOWAIT "Time's Up!"
ENDPROC

See Also

Interval, Timer