Ok I am new to vb and i am struggling trying to get a shape object to move across the screen.
So far i have made a timer that makes a label count up, but i cannot get the shape to move to it, this is the current code:
Code:
Private Sub Timer1_timer()
Shape1.move (label1.caption)
Label1.caption = Str(Val(Label1.caption) + Val(1))
End Sub
Any ideas?? If there is a better way of doing it then trhis would be good

Cheers...