Okay,Hard to explain,Im going to try anyway

What im tyring to do is take a picturebox,and use a timer to let it look as if its"Dragged"towards the center of the form,I tried it using an arrary but failed(Because generally ? I suck.)

I also tried this:

Code:
Private Sub Timer1_Timer()

Picture1.Visible = True
Picture2.Visible = False
Picture3.Visible = False

Timer1.Interval = 550
Picture1.Visible = False

Picture2.Visible = True

Timer1.Interval = 650
Picture2.Visible = False

Picture3.Visible = True

End Sub
But it doesnt work ! :-( I dont know what it is or how to do this;But there must be a way.

Help me out here.

-Aex