A an Jan 17, 2005 #1 Hello! In Access 2000, Is possivel for one label to blink? Thanks in advance. an
G Guest Jan 17, 2005 #2 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
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 Jan 18, 2005 #3 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 . Click to expand...
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 . Click to expand...