Private intTime As Integer
Private Sub cmdfire_Click()
If img2.Left < 1200 Then
tmr1.Enabled = False
End If
tmr1.Enabled = True
End Sub
Private Sub Form_Load()
tmr1.Enabled = False
End Sub
Private Sub tmr1_Timer()
img2.Move img2.Left - 20
End Sub
I have this picture moving left but i want it to stop at a certain time can someone please explain how this could be done.
Thank you


Reply With Quote