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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top