I have labels moving up in my project set by the forms' "On Timer" event.
When I set the "Timer Interval" to "10", the moving text is slightly blinking (like if it didn't have enough time to set itself before preparing to go to next position).
What do I have to do? Do I need a quicker monitor maybe?
When I set the "Timer Interval" to "10", the moving text is slightly blinking (like if it didn't have enough time to set itself before preparing to go to next position).
What do I have to do? Do I need a quicker monitor maybe?
Code:
Private Sub Form_Timer()
If Label2.Top < 100 Then
Label2.Top = 5000
End If
Label2.Top = Label2.Top - 20
If Label3.Top < 100 Then
Me!Label3.Top = 5000
End If
Label3.Top = Label3.Top - 20
End Sub