Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
visual-basic x 1
1 Posted Topic
Use a timer with interval of 100. Then type this code: label1.Left = label1.Left - 100 If label1.Left <= 0 Then label1.Left = 16970 End If if you want it to move to the left then right, use two timers each with an interval of 100: Private Sub Timer1_Timer() Label1.Left …
The End.