Blinking (?)

  • Thread starter Thread starter an
  • Start date Start date
A

an

Hello!

In Access 2000,
Is possivel for one label to blink?

Thanks in advance.
an
 
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


.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top