Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T04:03:59Z http://stackoverflow.com/feeds/question/178537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard 0 Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input Peter Turner http://stackoverflow.com/users/1765 2008-10-07T13:52:00Z 2008-11-14T20:41:06Z <p>Maybe this is an overarching question as I've seen similar bugs in Firefox and I'd like to know how to avoid coding them.</p> <p>For no apparent reason, the function keys, arrow keys (de-numlocked numpad as well), the 6 keys over the arrows, and backspace stop working. Every other key seems to work leading me to think it's some sort of interrupt issue. It works again when I restart Delphi. </p> <p>This is on an IBM Model M keyboard so certainly it couldn't be a hardware issue, although if someone knows better I won't be that naive, I've noticed this with different keyboards.</p> <p>I'm not actually interested in a fix for Delphi, I just would like to know how to avoid keyboard input bugs. I'm most certainly debugging bug laden code. I just wonder why it causes parts of the keyboard to malfunction.</p> http://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard/178557#178557 3 Answer by mm2010 for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input mm2010 http://stackoverflow.com/users/18681 2008-10-07T13:55:28Z 2008-10-07T13:55:28Z <p>I doubt that it's Delphi's fault. I'm using Delphi 7 and never had this problem. I suggest you look for another culprit.</p> http://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard/178708#178708 1 Answer by mj2008 for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input mj2008 http://stackoverflow.com/users/5544 2008-10-07T14:29:42Z 2008-10-07T14:29:42Z <p>If this happens when in the debugger, it is possible that the message processing for a keystroke is failing to be completed. Try pressing all the Alt, shift, control, and all other such keys to see if the issue clears. </p> http://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard/181685#181685 1 Answer by Lars Truijens for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input Lars Truijens http://stackoverflow.com/users/1242 2008-10-08T07:32:03Z 2008-10-08T07:32:03Z <p>Or is it a faulty Global Keyboard Hook? Try disabling as much utilities that have global hotkeys.</p> http://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard/291333#291333 0 Answer by Peter Turner for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input Peter Turner http://stackoverflow.com/users/1765 2008-11-14T20:40:13Z 2008-11-14T20:40:13Z <p>Ha! I finally figured out what was doing it, I've got MadExcept installed and when I used Ctrl-Shift-C to autogenerate class functions I was getting a delphi exception. I'd get an error and it was secretly a MadExcept error. If I clicked OK it would stop me from entering some "meta"-keyboard input. If I Ctrl-Shift-C again on that stub class and the error pops up. I can hit Details, then it tells me regular MadExcept info about the error. I can hit Details and continue programming, and my IDE is fine again!</p>