Making a label blink 
Author Message
 Making a label blink

Set the form's TimerInterval property to some value other than 0 (1000=1sec)

Sub Form_Timer()

If Me!Label!.BackColor = &FFFFFF Then
    Me!Label1.BackColor = &HFF         'Set to Red
Else
    Me!Label1.BackColor = &HFFFFFF        'Set to White
End If

When you want it to quit, set the TimerInterval = 0



Tue, 26 Feb 2002 03:00:00 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. Problem making a label blink

2. making labels and/or text fields blink

3. BLink blink blink

4. Blinking Label

5. visual basic blinking label

6. Blinking labels

7. Refreshing picture box causing blinking label

8. Blinking labels and list box.

9. Blinking Text/Label

10. How to make a label BLINKs?

11. colors and blinking for a label - How To?

12. Blinking labels?

 

 
Powered by phpBB® Forum Software