Static x As Integer = +TimeLbl.Left
Static y As Integer = TimeLbl.Top
Static width As Integer = TimeLbl.Width
Static height As Integer = TimeLbl.Height
If DateTime.Now = "08:00:00" Then
Timer1.Enabled = True
With Me
x += 0.6
If x <= +.TimeLbl.Width Then
x = .Width
End If
.TimeLbl.SetBounds(x, y, width, height)
End With
ElseIf DateTime.Now = "117:00:00" Then
Timer1.Enabled = False
End If
here i got problem when the codings above doesn't work to move the label to the right automatically when i assign specific time.