views:

30

answers:

2

Any ideas on to implementing a progress bar type solution for heavy emails? So when heavy attachments are being uploaded a progress bar with actual % or bytes uploaded can be displayed?

Searched on this topic a bit, a third party library here supports this kind of thing.

But looking for some piece of actual code or material on how to implement this kind of control.

Please share, if anyone has any insights on this. Thanks.

A: 

Can you not make use of BackgroundWorker? The link you posted allows you to download the entire project/solution.

Aaron
+1  A: 

If you can't afford a commercial library, try this open source project: http://mailsystem.codeplex.com

You will have to implement your own report progress functions, it's not in the library.

Pierre 303
Thanks.. going through the code.. seems like a pretty nice library.
Aseem Gautam