Click here to Skip to main content
Click here to Skip to main content

Using Windows Explorer Progress Dialog In Your Application

By , 18 Jan 2005
 

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:

        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

About the Author

sytelus
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionStrange issuememberT800G20-Mar-12 12:43 
QuestionDelay after calling StartProgressDialogmemberKaqkk7920-Mar-12 6:44 
AnswerRe: Delay after calling StartProgressDialogmemberT800G20-Mar-12 12:40 
GeneralRe: Delay after calling StartProgressDialogmemberKaqkk7921-Mar-12 6:02 
Generalawesome!memberjd3106822-May-09 5:48 
QuestionGet The Dialog Handle and ... URGENT PLEASE..memberamolpbhavsar25-Nov-08 0:55 
QuestionAnother problem, The error occured when .NET Framework 2.0 update the hotfix KB928365memberstevenyoung23-Oct-08 12:16 
GeneralLocus lost problemmemberamolpbhavsar23-Oct-08 2:22 
GeneralRe: Locus lost problemmemberapierini20-Nov-08 22:07 
QuestionHow to position the progressDialog in Center of the screen.memberamolpbhavsar22-Oct-08 3:35 
QuestionHow would I use this to copy a directory with sub-directoriesmemberSreeSatya1-Aug-06 11:40 
QuestionHow can i use this in C# (ASP.Net) ?membermakadown3-Oct-05 8:40 
AnswerRe: How can i use this in C# (ASP.Net) ?memberScottGBlood19-May-06 0:57 
GeneralMain window will lose focus automaticallymemberstevenyoung18-Feb-05 18:04 
GeneralRe: Main window will lose focus automaticallymemberamolpbhavsar23-Oct-08 4:41 
GeneralMain window will lose its focus automaticallymemberstevenyoung18-Feb-05 17:01 
GeneralThe main window will lose focus when ProgressDialog disposed!memberstevenyoung18-Feb-05 16:53 
GeneralWithout the interop and slighty fastermemberWraith,20-Jan-05 5:44 
GeneralRe: Without the interop and slighty fastermemberRussKie20-Jan-05 12:53 
GeneralRe: Without the interop and slighty fastermemberWraith,20-Jan-05 15:16 
GeneralRe: Without the interop and slighty fastermemberRussKie20-Jan-05 15:32 
GeneralRe: Without the interop and slighty fastermemberWraith,20-Jan-05 16:13 
GeneralRe: Without the interop and slighty fastermemberRussKie20-Jan-05 17:49 
GeneralRe: Without the interop and slighty fastermemberWraith,22-Jan-05 2:54 
GeneralRe: Without the interop and slighty fastermemberRussKie22-Jan-05 22:25 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 18 Jan 2005
Article Copyright 2005 by sytelus
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid