Animated AVI for showing progress?

  • Thread starter Thread starter Lars Netzel
  • Start date Start date
L

Lars Netzel

How do I add and make an 8 bits AVI work in a Windows.Form Forexample the
copyfiles AVI that is included in windows..

I can get it to show and work in the form.

best regards
/Lars Netzel
 
Okay.. that seems like it's in the right area but I didn't real yunderstand
how to use it.,,. isn't there a way to just click and drag an AVI fil onto
the form? I know in my first steps in vb 6.0 there was a Multimedia control
that I used to play clips and sounds with... the stuff you sent me was just
some classes and nothing that place anything onto the form really.. or am I
complete way of here?

/Lars
 
Lars Netzel said:
Okay.. that seems like it's in the right area but I didn't real
yunderstand how to use it.,,. isn't there a way to just click and drag an
AVI fil onto the form? I know in my first steps in vb 6.0 there was a
Multimedia control that I used to play clips and sounds with... the stuff
you sent me was just some classes and nothing that place anything onto
the form really.. or am I complete way of here?

Place a panel control on the form, then use something like this to start the
animation:

\\\
Dim v As New VideoFile("C:\WINDOWS\clock.avi", Me.Panel1)
v.Play()
///
 
Back
Top