J
Jesse
It is not feasible to place every piece of code i write within a
'try...catch' block. So how should I handle errors that occurr ouside of a
try...catch block?
In the full-scale framework I can add the following handlers to my
application to capture and handle such errors:
AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf
MyCatchAllExceptionHandler
AddHandler Application.ThreadException, AddressOf
MyCatchAllExceptionHandler
How would I do something similar in the Compact Framework?
Thank you!
'try...catch' block. So how should I handle errors that occurr ouside of a
try...catch block?
In the full-scale framework I can add the following handlers to my
application to capture and handle such errors:
AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf
MyCatchAllExceptionHandler
AddHandler Application.ThreadException, AddressOf
MyCatchAllExceptionHandler
How would I do something similar in the Compact Framework?
Thank you!