DELPHI IDE - stop F12 when calling the "processor window"

I am developing a Delphi application that uses F12

When I start the software under the Delphi IDE and press F12, the program stops and the CPU window opens.

What can I do to stop the Delphi IDE from doing this when I press F12?

+6
delphi
source share
1 answer

Change the value of this registry key.

HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\UserDebuggerHotKey

.. to 0x13 (19 in decimal). This changes the key from f12 to pause / break. You will need to reboot for this change to take effect.

Link: This is a blog post . The MS link in the message is broken, so itโ€™s fixed here .

+15
source share

All Articles