VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels

by Narender Sharma(Sunny) (1 Submission)
Category: Graphics
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 25th September 2008
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels or other controls as well.

Rate Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels



'|This code is submitted for Educational purpose.           |
'|Its free to use.                                          |
'|Insert 2 menus in MDIForm1, named as mnuFile and mnuQuit  |
'|U need Timer1 and just copy and paste this code           |
'|Set Timer1_Interval 600 in properties.                    |
'|U can replace menu with other controls such as Labels or _|
'|Cmd Buttons as Ur required by Ur project.                 |
'|__________________________________________________________|

Private Sub Timer1_Timer()
    Static i As Boolean
    If i Then
       MDIForm1.mnuQuit.Caption = "Quit"
       i = Not i
    Else
       MDIForm1.mnuQuit.Caption = ""
       i = Not i
    End If
End Sub

Download this snippet    Add to My Saved Code

Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels Comments

No comments have been posted about Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels . Why not be the first to post a comment about Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels .

Post your comment

Subject:
Message:
0/1000 characters