Results 1 to 3 of 3

Thread: Browser style busy animation

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2000
    Posts
    9

    Post

    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!

  2. #2
    Lively Member Ishamel's Avatar
    Join Date
    Nov 1999
    Location
    Edinburgh, Scotland
    Posts
    112

    Post

    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?

  3. #3
    Addicted Member njnets's Avatar
    Join Date
    Aug 2002
    Posts
    206

    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
  •  



Click Here to Expand Forum to Full Width