A G
A G

Reputation: 22587

c# winform email progress and cancellation

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.

Upvotes: 0

Views: 165

Answers (2)

user333306
user333306

Reputation:

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.

Upvotes: 1

Aaron McIver
Aaron McIver

Reputation: 24713

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

Upvotes: 0

Related Questions