Thanks to NeoPa, Rabbit and TheSmileyCoder for the your assistance. Now that I have my lblProcessing label flashing on my OnTimer, I would like to control the number of times the label 'lblProcessing' will flash in my code.
I have placed this code in the form OnTime but it doesn't work. What is does is stop the flashing, there is no error message.
Any help will be appreciated.
Thanks
I have placed this code in the form OnTime but it doesn't work. What is does is stop the flashing, there is no error message.
Code:
Private Sub Form_Timer()
With Me.lblProcessing
.Visible = Not Me.lblProcessing.Visible + 5
End With
End Sub
Thanks
Comment