
timer event within a timer event
Hi, I have a timer event with an inteval of 60000 and below it loops over
15 times, which is roughly 15 mins this event is activated, when this is
activated this calls another timer event which uses an API to flash the
title bar every 0.5 seconds
the problem being that one the first timer finishes it makes the other
timer enabled but the event does not happen until next time around. Is
there any problem with calling a timer event from another timer. (code for
first timer below)
Justin
Static TimerCount As Integer
If TimerCount < 15 Then
TimerCount = TimerCount + 1
Exit Sub
End If
TimerCount = 0
Timerflash.Enabled = True
End Sub