*.avi Files
I have copied some code out of the SAMS "Visual Basic in 10 Minutes" guide
to play an animation
Private Sub cmdStart_Click()
anmAnimation1.Open "C:\Program Files\Autodesk\Autosketch\cs.avi"
anmAnimation1.Play
End Sub
This works, however when I follow the further instruction as to how to get
it to play the animation 4 times and showing only the first 10 frames;
Private Sub cmdStart_Click()
anmAnimation1.Open "C:\Program Files\Autodesk\Autosketch\cs.avi", 4, ,
10
anmAnimation1.Play
End Sub
... I receive the following error message:
Compile error
Wrong number of arguments or invalid property assignment
Any ideas?
Also, do you know where there any website from which I can download free
*.avi files?
Many thanks
paddymichelle