timer event within a timer event 
Author Message
 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



Thu, 25 Nov 1999 03:00:00 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. Timer interval is depending on code in timer event

2. Calling a sub from a the timer event of a timer control

3. Timer tick event instead of elapsed event

4. TIMER event arrives, but the last event is not finished

5. Common Dialog and Timer Events/MCI Done Event

6. Timer Event

7. On Timer Event

8. timer event

9. On timer event Q

10. Access97: Problems with timer events moving the focus for RunCommand

11. Timer event problem

12. Using the timer event to change colors?

 

 
Powered by phpBB® Forum Software