home *** CD-ROM | disk | FTP | other *** search
- 'Place this line in the Declarations section of your script
- 'Dim ThisTimer As LWPTimer
-
- 'Theses lines name the timer within Word Pro, set the interval in seconds and turn the timer on
- Set ThisTimer = Bind("MyTimer")
- ThisTimer.Interval = 2
- ThisTimer.Enabled = True
-
- On Event TimerTick From ThisTimer Call ThisTimerTick
-
-
- Sub ThisTimerTick(Source As LWPTimer)
- Print "Tick - Tick "
-