Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard input - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T04:03:59Zhttp://stackoverflow.com/feeds/question/178537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178537/why-does-my-delphi-7-debugger-randomly-decide-to-stop-accepting-certain-keyboard0Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard inputPeter Turnerhttp://stackoverflow.com/users/17652008-10-07T13:52:00Z2008-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#1785573Answer by mm2010 for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard inputmm2010http://stackoverflow.com/users/186812008-10-07T13:55:28Z2008-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#1787081Answer by mj2008 for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard inputmj2008http://stackoverflow.com/users/55442008-10-07T14:29:42Z2008-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#1816851Answer by Lars Truijens for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard inputLars Truijenshttp://stackoverflow.com/users/12422008-10-08T07:32:03Z2008-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#2913330Answer by Peter Turner for Why does my Delphi 7 Debugger randomly decide to stop accepting certain keyboard inputPeter Turnerhttp://stackoverflow.com/users/17652008-11-14T20:40:13Z2008-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>