Moving PictureBox using Timer
问题 Basically what I'm trying to do is to make a picture box go up, then left, then down, then right, all based on timer ticks. I'm fairly new so I don't really know what's wrong. If you guys could give a simple answer or a better approach, that'd be great. Dim slides As Integer slides += 10 If slides < 20 Then PictureBox1.Left += 10 ElseIf slides > 20 AndAlso slides < 40 Then PictureBox1.Top += 10 ElseIf slides > 40 AndAlso < 60 Then PictureBox1.Left -= 10 ElseIf slides > 60 AndAlso < 80 Then