Hi,
I tried to find how to show an AVI animation sequence like a "filecopy"
animation but did not find how to do that in VB. Is there a control in
VB.NET or any other way of doing it??

I be very happy for a code example if possible.....feeling a little lost for
the moment ;-)

br

/ Mikael

Re: AVI animation on VB.NET form howto? by Herfried

Herfried
Mon Jul 18 16:28:34 CDT 2005

"Mikael Jansson" <mikael.jansson@activemind.se> schrieb:
> I tried to find how to show an AVI animation sequence like a "filecopy"
> animation but did not find how to do that in VB. Is there a control in
> VB.NET or any other way of doing it??

The Multimedia sample's 'VideoFile' class can be used for playback of video
files within Windows Forms applications.

<URL:http://www.mentalis.org/soft/class.qpx?id=1>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Re: AVI animation on VB.NET form howto? by Mikael

Mikael
Wed Jul 20 08:55:35 CDT 2005

Herfried,
Thanx! I have tried it and it works but I can not figure out how to place it
on my form (maybe a stupid question), do you have an VB.NET example or a
hint of how to do it?

br

/ Mikael

"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:O04qrB%23iFHA.1416@TK2MSFTNGP09.phx.gbl...
> "Mikael Jansson" <mikael.jansson@activemind.se> schrieb:
>> I tried to find how to show an AVI animation sequence like a "filecopy"
>> animation but did not find how to do that in VB. Is there a control in
>> VB.NET or any other way of doing it??
>
> The Multimedia sample's 'VideoFile' class can be used for playback of
> video files within Windows Forms applications.
>
> <URL:http://www.mentalis.org/soft/class.qpx?id=1>
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>



Re: AVI animation on VB.NET form howto? by Herfried

Herfried
Wed Jul 20 09:17:20 CDT 2005

"Mikael Jansson" <mikael.jansson@activemind.se> schrieb:
> Thanx! I have tried it and it works but I can not figure out how to place
> it on my form (maybe a stupid question), do you have an VB.NET example or
> a hint of how to do it?

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()
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>


Re: AVI animation on VB.NET form howto? by Mikael

Mikael
Thu Jul 21 01:13:39 CDT 2005

great! that saved me some time.

thanks

/ Mikael

"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:e7mR%23WTjFHA.2644@TK2MSFTNGP09.phx.gbl...
> "Mikael Jansson" <mikael.jansson@activemind.se> schrieb:
>> Thanx! I have tried it and it works but I can not figure out how to place
>> it on my form (maybe a stupid question), do you have an VB.NET example or
>> a hint of how to do it?
>
> 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()
> ///
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>