c# winform email progress and cancellation
Any ideas on to implementing a progress bar type solution for heavy emails? So when heavy att开发者_Python百科achments 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.
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.
Can you not make use of BackgroundWorker? The link you posted allows you to download the entire project/solution.
精彩评论