Crash dumps

  • Thread starter Thread starter Mr.Tickle
  • Start date Start date
M

Mr.Tickle

Is it possible to code something in C# that would behave like Watson does
and catch my application crashing and give me crash information and send it
remotely to me for debugging?
 
Well, you could enclose all your code in a big try/catch for starters.
Would that help?

-mike
MVP
 
some SHARED way so I can check all my applications that are installed.

Not per application.
 
some SHARED way so I can check all my applications that are installed.

You can try hooking to AppDomain.CurrentDomain.UnhandledException event
handler - this will allow you to at least obtain Exception message and
stack trace information, and possibly (hopefully if the user agrees to do
so) report it back to a public server that logs the information for later
perusal.

-mbray
 
Back
Top