P
pezi
hello
i'm developing an application for a wm6-device. sometimes the application
suddenly is closed without throwing any exception or anything else.
----------------
try
{
AppDomain.CurrentDomain.UnhandledException +=
new
UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
...
Application.Run(...);
}
catch (Exception e)
{
MessageBox.Show(...);
}
catch
{
MessageBox.Show(...);
}
----------------
as you can see in the code-block above i already catch all exceptions (even
the unhandled ones) but apparently there are some more
does anyone know what could be happening here respectively how to catch this
exception (or whatever it is)
tia
pezi
i'm developing an application for a wm6-device. sometimes the application
suddenly is closed without throwing any exception or anything else.
----------------
try
{
AppDomain.CurrentDomain.UnhandledException +=
new
UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
...
Application.Run(...);
}
catch (Exception e)
{
MessageBox.Show(...);
}
catch
{
MessageBox.Show(...);
}
----------------
as you can see in the code-block above i already catch all exceptions (even
the unhandled ones) but apparently there are some more
does anyone know what could be happening here respectively how to catch this
exception (or whatever it is)
tia
pezi