You might see this as a dumb question, but I'm curious about how I can terminate my delphi-made application with APPCRASH error. (also known as "Don't send" error!!)
Thnx in advance
|
You might see this as a dumb question, but I'm curious about how I can terminate my delphi-made application with APPCRASH error. (also known as "Don't send" error!!) Thnx in advance |
|||||||||
|
|
You can enable this functionality by setting the global variable, JITEnable, in System. If you set it to 1, all external exceptions (ie. Access violations, illegal instructions, and any non-Delphi exception), will trigger the reaction you want. If you set it to 2, any exception will trigger that behavior. In either case this will only happen when you're not debugging the application. The debugger will always get first crack and will notify you of the impending doom. Here's a simple example:
|
|||||||||||||
|
|
Instead of workaround paths for exception handling - you can just don't use any:
|
|||||||||||||||||||
|