- Home
·
- Graphics
·
- Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels
Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels
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
(2(2 Vote))
'|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
Blinking Menu's in MDIForm or any Form you want. You can use this code for Command Buttons, Labels Comments
No comments yet — be the first to post one!
Post a Comment