How to load AVI's from shell32.dll & play them?

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
Hi Terry,

In .NET you can simply make your own dialog and put an animated GIF into
a PictureBox and it will cycle through from start to finish until the copy
is completed. One word of advice though would be to run the dialog in a new
thread separate from the copy operation or you will struggle to see the
animation updating due to the thread being too busy.

Alternatively you can use the shell api's to copy a file,

Lookup SHFileOperation -
http://msdn.microsoft.com/library/d...shell/reference/functions/shfileoperation.asp

This will then use the shells file copy dialog.

I hope this info helps!

Nick.
 
Back
Top