Link to home
Start Free TrialLog in
Avatar of halfondj
halfondj

asked on

Need to show progress like flying folders

During a communications session between the PC and the host, I want to display an image like the flying folders displays during a file copy, but the image needs to show communications between two computers.

How would I need to implement this, e.g. code, avi image, etc.?

Thanks.
Avatar of halfondj
halfondj

ASKER

Looks like I found the answer.

After I insert an animation control on my form, the code to do what I need it to do is:

Private Sub Form_Load()
    Animation1.Open app.path & "\FILECOPY.AVI"
    Animation1.Play -1, 0, -1
End Sub

Thanks anyway.
ASKER CERTIFIED SOLUTION
Avatar of Computer101
Computer101
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial