|
-
Feb 21st, 2000, 11:36 PM
#1
Thread Starter
New Member
I would like to make a small avi that plays over and over when the database is being accessed in my VB app. I am unsure how to tell it to animate this and how I can be sure there will be enough system resourses at all times to make it run as smooth as the one in IE does. Any suggestions? The art is the easy part, we can do a gif, an avi whatever. ust the code is the problem.
Thanx in advance!
-
Feb 21st, 2000, 11:40 PM
#2
Lively Member
You could use the Animation control to play an AVI file.
This will start the AVI file.
Code:
Animation1.AutoPlay = True
Animation1.Open "C:\myAVIFile.AVI"
This will stop the AVI file.
Code:
If Animation1.AutoPlay Then
Animation1.AutoPlay = False
Animation1.Close
End If
Hope this helps. 
------------------
Ishamel
[email protected]
How can I tell you I love you when you are sitting on my face?
-
Aug 21st, 2002, 11:41 AM
#3
Addicted Member
Animation
Hi,
For my web browser, I want to put an animation in the corner so when a page is loading, the animation starts, and when the page is done, the animation stops. I think I have to use another web browser control to place the animation in. Does anyone know how to place the animation in the browser control and make it stop or begin?
Any help appreciated.
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
|