lucyLocket
Registered User.
- Local time
- Yesterday, 22:46
- Joined
- Dec 24, 2007
- Messages
- 15
Hi
I have this simple code
which causes a label to appear on a form as the mouse moves over an image. Because it is not a button in the true sense of the word, there is no choice given for using "onMouseOut" or something similar.
How do I make the above label visible for say 3 seconds, then become invisible.
Thanks
I have this simple code
Code:
Private Sub btnHead_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.help_text.Visible = True
End Sub
which causes a label to appear on a form as the mouse moves over an image. Because it is not a button in the true sense of the word, there is no choice given for using "onMouseOut" or something similar.
How do I make the above label visible for say 3 seconds, then become invisible.
Thanks