i have a label set on timer event with time interval 300,
what i need is if my mouse point the label which has timer event the label should stop blinking and when the mouse move away it will return on blinking.
Would it be possible for you to add a second label surrounding the first but bigger? If so, this may suit:
Code:
Private Sub TimerLabel_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.TimerInterval = 0
End Sub
Private Sub BigLabel_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Me.TimerInterval = 300
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.