Error Handler

  • Thread starter Thread starter sureshot
  • Start date Start date
S

sureshot

Remind me please. Was there ever a way you could send
emails programatically from a .NET CF Mobile App.

I have a error capturing screen that sets up any managed
exceptions that arise and I want to send them to our
helpdesk.

1. Can I do this dynamically from a click event using some poutlook class?
2. If not and I have to P/Invoke poutlook, is there any
tips on how to transfer my captured errors on the screen
to the subject and body of an email
3. I have done this for managed exceptions, any tips for
doing it on unmanaged exceptions?
 
You have several options:

1) roll your own SMTP class:
http://groups.google.com/groups?q=c...c2ab29$0f20eca0$d7f82ecf@TK2MSFTNGXA14&rnum=2

2) ase the Pocket Outlook Object Model (POOM):
http://www.microsoft.com/downloads/...11-CC81-4190-AAB4-B1EA57637BAC&displaylang=en

3) third party solutions that wrap and abstract either of these two
approaches:
Incorporating Pocket Outlook Data into Your Microsoft .NET Compact
Framework-based Applications
www.inthehand.com
http://msdn.microsoft.com/mobility/...ibrary/en-us/dnnetcomp/html/inthehandpoom.asp

nsoftware
http://www.nsoftware.com/download/

Mooseworks Software
http://www.mooseworkssoftware.com/Communication.htm

This list is most likely incomplete, I apologize to anyone that I may have
missed.
--
Jonathan Wells
Product Manager
..NET Compact Framework
Check out the .NET Compact Framework FAQ at:
http://msdn.microsoft.com/mobility/prodtechinfo/devtools/netcf/FAQ/default.aspx

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top