Click here to Skip to main content
15,867,453 members
Articles / Web Development / HTML
Article

Using Windows Explorer Progress Dialog In Your Application

Rate me:
Please Sign up or sign in to vote.
4.12/5 (14 votes)
18 Jan 20052 min read 157.3K   2.4K   90   33
A simple .NET wrapper that lets you use IProgressDialog interface to show standard Windows progress dialog with AVI animation and built-in time remaining calculation.

Sample Image - ProgressDialogDemo.jpg

Introduction

When you copy a large file in Explorer, you see the standard Windows progress dialog coming up with "flying papers" animation with the calculation of estimated time remaining. This dialog is accessible to any Windows application through IProgressDialog interface. While this interface is pretty simple and intuitive to use, more often than not, many developers are unaware of its existence spending lot of time in replicating exactly the same functionality. The goal of this article is to create awareness about this interface and to provide an even simpler managed .NET wrapper to use this functionality.

Background

The current article is based on another article on using IProgressDialog in VB6 at msjogren.com. The current article uses the same .TLB file as in that article to create the managed .NET wrapper and adds-on few little extras such as additional animation styles.

Using the code

Warning: There is a default two second delay before the dialog appears. This seems to be default behavior.

Using the code is pretty easy as can be seen in the following snippet:

VB
Dim progressDialog As New WinProgressDialog.ProgressDialog
Try
    progressDialog.Show(Me.Handle.ToInt32, "descr1", "Descr2", MaxValue)
    progressDialog.UpdateProgress(progress, detail)
Finally
    progressDialog.Dispose()
End Try

You might want to check the return value to see if the user has pressed the Cancel button. This you can also check by calling HasUserCancelled.

Many times, you just want to show an animation without progress dialog (like showing flashlight when performing search). You can do this by setting ProgressBarVisible to False.

Points Of Interests

Notice the use of LoadLibrary and FreeLibrary to get the handle of standard animations from shell32.dll. It's possible to use your own custom animation instead of standard ones available through StandardProgressAnimations Enum.

A Dispose is required to make sure a call to FreeLibrary was made and also to Marshal.ReleaseComObject on main dialog.

The Interop.VBProgressDialog.dll which is referenced by the project is automatically generated by VS.NET when progdlg.tlb is referenced. If you need to sign the DLL, then you will need to manually generate a signed version of interop using tlbimp.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Shital Shah is a Software Engineer and is passionate about physics, mathematics and learning algorithms. You can reach him through his website and blog.

Comments and Discussions

 
GeneralLocus lost problem Pin
amolpbhavsar23-Oct-08 2:22
amolpbhavsar23-Oct-08 2:22 
GeneralRe: Locus lost problem Pin
apierini20-Nov-08 22:07
apierini20-Nov-08 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.