up vote 6 down vote favorite
4
share [g+] share [fb]

I am busy developing a Delphi App that uses F12

When I am running the software under the Delphi IDE and press F12 the program stops and the ‘CPU’ window opens up

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

link|improve this question

possible duplicate of How do you disable the CPU window in Delphi 7 – Johan Dec 10 '11 at 20:09
feedback

1 Answer

up vote 15 down vote accepted

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.

Reference: this blog post. The MS link in the post is broken, so here's a fixed one.

link|improve this answer
For me, that registry key is set to 0x00000000.. and the blog's link to microsoft support is broken. – Blorgbeard Dec 18 '08 at 19:54
Here's a non-broken link: microsoft.com/technet/prodtechnol/windows2000serv/reskit/… 0x00000000 = F12 – Craig Stuntz Dec 18 '08 at 19:58
Craig, you should put the non-broken link directly in your answer rather than in a comment to it. – Jan Goyvaerts Dec 19 '08 at 0:29
Fixed link added. – Craig Stuntz Dec 19 '08 at 1:57
Awesome, it worked. Note that it does require a reboot though. – Blorgbeard Dec 23 '08 at 23:14
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.