- Home
·
- Miscellaneous
·
- Blink the text field and same can be employed to blink other objects on the form also. This is requ
Blink the text field and same can be employed to blink other objects on the form also. This is requ
Blink the text field and same can be employed to blink other objects on the form also. This is required to draw attention of user In given
API Declarations
'None
Rate Blink the text field and same can be employed to blink other objects on the form also. This is requ
(1(1 Vote))
Timer1.Interval = 1000 ' set the blink time
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
If Text1.Visible = True Then
Text1.Visible = False
Else: Text1.Visible = True
End If
' Debug.Print Text1.Visible ' check the status dor debugging purpose only
End Sub
Blink the text field and same can be employed to blink other objects on the form also. This is requ Comments
No comments yet — be the first to post one!
Post a Comment