- Home
·
- Graphics
·
- Move a picture or anything else in 8 different directions
Move a picture or anything else in 8 different directions
Move a picture or anything else in 8 different directions
Rate Move a picture or anything else in 8 different directions
(1(1 Vote))
Private Sub Form_Load()
Timer1.Interval = 22
End Sub
'---------------------------------
Private Sub Timer1_Timer()
'Move Image1 Left
Image1.Left = Image1.Left + 50
'Move Image1 Right
Image1.Left = Image1.Left - 50
'Move Image1 Up
Image1.Top = Image1.Top - 50
'Move Image1 Down
Image1.Top = Image1.Top + 50
'Move Image1 leftUp then mix Left Up for example
End Sub
Move a picture or anything else in 8 different directions Comments
No comments yet — be the first to post one!
Post a Comment