home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 November
/
Pcwk1197.iso
/
LOTUS
/
Eng-ins
/
WORDPRO
/
TIMER.TPL
< prev
next >
Wrap
Text File
|
1995-07-10
|
395b
|
14 lines
'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 "