> Here is a short article that summarizes a lot of this, including Registry
> setting that controls the JIT Debugger Windows Error screen popup:
>
> http://www.eggheadcafe.com/articles/20051205.asp
Unfortunately, this articles just enumerates all ways to catch
exceptions. It doesn't summarize anything else, like about how they
work, which one is better, in which situations one is better, which
one could be used in deployment, etc. All it is are methods to help
the developer catch the problem on her own machine.
So, I'm still at square one, trying to determine why the following
code 'fires' on some WinXP machines (mine), but not on others (that I
unfortunately can't get my hands on, at the moment). It's hard to
beta test something that is not consistent.
Application.ThreadException += new
System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
Zytan