Blinking (?)

  • Thread starter Thread starter an
  • Start date Start date
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
 
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


.
 
Back
Top