This code makes a command button blink. Very Simple.
This code makes a command button blink. Very Simple.
Rate This code makes a command button blink. Very Simple.
(1(1 Vote))
'Add a command button and a timer
'Name the timer "tmrBlinker"
'Use the command button's default name
'Add the code in the timer event and form load event
'Enjoy!
Private Sub Form_Load()
tmrBlinker.Interval = 900 'Change number to whatever suits you
End Sub
Private Sub tmrBlinker_Timer()
If Command1.Visible = True Then
Command1.Visible = False
Else
Command1.Visible = True
End If
End Sub
This code makes a command button blink. Very Simple. Comments
No comments yet — be the first to post one!
Post a Comment