|
-
May 18th, 2010, 08:06 PM
#1
Thread Starter
Member
[RESOLVED] Stoping the moving picture
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|