Dim i As Integer
Dim strmessage As String
Try
~THIS writes the text~
i += 1 'Increase message
Label1.Text += strmessage.Substring(i - 1, 1)
Catch ex As Exception
~THIS will reset the message to 0~
i = 0
Label1.Text = ""
strmessage = "MESSAGE HERE"
End Try


If Label1.Left = 180 Then ' 180 is the size of your width (change it to your size)
Label1.Left = -155 '-155 where it starts (you can change that)
Label1.Left += 5 'makes it move its width by 5 every interval
Else
Label1.Left += 5 'makes it move its width by 5 every interval
End If