-
Hi I have a timer getting the time and putting it into the labels caption, to sort of make a timer that is more accurate for an inerval of 1 second. And I am putting what I want to happen after each second in the labels change event. but the problem is the label change event takes a bit to long to make the timer to accurate, so I was wondering is there a way to get a timer to check a labels change event?
-
I hope this works for you:
Code:
Dim Changed As Integer
Private Sub Label1_Change()
Changed = 1
End Sub
Private Sub Timer1_Timer()
If Changed = 1 Then
THE LABEL HAS BEEN CHANGED
Changed = 0
Else
UNCHANGED MELODY =)
End If
End Sub
bob