Marque Text from Right to left
Marque Text from Right to left
Rate Marque Text from Right to left
(1(1 Vote))
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Interval = NumericUpDown1.Value
Label1.Left = Label1.Left - 10
If Label1.Left < 0 - Label1.Width Then
Label1.Left = Me.Width
End If
End Sub
Private Sub Form6_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Enabled = True
End Sub
End Class
Marque Text from Right to left Comments
No comments yet — be the first to post one!
Post a Comment