Blinking (?)

M

Mauricio Silva

Set the form's property TimeInterval to 1000 (1 second) and the event
OnTimer :

Private Sub Form_Timer()
Label1.Visible = Not Label1.Visible
End Sub

Blinking labels are not a good practice to design forms. You should try
changinging the color instead.

Mauricio Silva
 
A

an

Ok.

Thank you for your recomendation.
an

-----Original Message-----

Set the form's property TimeInterval to 1000 (1 second) and the event
OnTimer :

Private Sub Form_Timer()
Label1.Visible = Not Label1.Visible
End Sub

Blinking labels are not a good practice to design forms. You should try
changinging the color instead.

Mauricio Silva


.
 
Top