VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Blink the text field and same can be employed to blink other objects on the form also. This is requ

by DS Oberoi (1 Submission)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Mon 5th February 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



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

Download this snippet    Add to My Saved Code

Blink the text field and same can be employed to blink other objects on the form also. This is requ Comments

No comments have been posted about Blink the text field and same can be employed to blink other objects on the form also. This is requ. Why not be the first to post a comment about Blink the text field and same can be employed to blink other objects on the form also. This is requ.

Post your comment

Subject:
Message:
0/1000 characters