This is the code I posted in that thread to move the Label from right to left:
VB Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Start the Label at the far right of the Panel.
Me.Label1.Left = Me.Panel1.Width
Me.Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
'Move the Label to the left.
Me.Label1.Left -= 10
If Me.Label1.Right <= 0 Then
'Start again.
Me.Label1.Left = Me.Panel1.Width
End If
End Sub
What do you suppose you would have to change to make it go left to right? Think first, ask questions later.