Hi all,
I need some way of making a label on a form VERY obvious to the user.
I was thinking of something like the background colour of the label changing every few seconds, but any ideas are welcome.
1. in the On Timer property of your form enter this code:
If Me.Label1.BackColor = 16777215 Then
Me.Label1.BackColor = 8388608
Else
If Me.Label1.BackColor = 8388608 Then
Me.Label1.BackColor = 16777215
End If
End If
mix and match the colors to whatever you like. for this example,
12632256 = gray (the form i tested this on is battleship gray) and
8388608 = dark blue.
2. in the Timer Interval property enter something like 500.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.