Delphi 2009 OnKeyDown does not trap as Delphi 2007 does - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:56:28Z http://stackoverflow.com/feeds/question/573392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/573392/delphi-2009-onkeydown-does-not-trap-as-delphi-2007-does 0 Delphi 2009 OnKeyDown does not trap as Delphi 2007 does Gad D Lord 2009-02-21T17:12:44Z 2009-02-22T00:08:01Z <p>Hello,</p> <p>I have this code</p> <pre><code>procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); var begin if not (Key in [Ord('0')..Ord('9')]) then Key := 0; end; </code></pre> <p>and it worked fine with Delphi 2007. When I upgraded to Delphi 2009 and I try to press any letter it is accepted and the Key := 0 does not trap the input?</p> <p>Anyone encountered the same behavior?</p> http://stackoverflow.com/questions/573392/delphi-2009-onkeydown-does-not-trap-as-delphi-2007-does/573446#573446 12 Answer by Andreas for Delphi 2009 OnKeyDown does not trap as Delphi 2007 does Andreas 2009-02-21T17:38:53Z 2009-02-21T17:38:53Z <p>Are you sure that this worked in Delphi 2007? I just tried the code in Delphi 2007 and 2009. And both behave the same (No key stroke is eaten) If you want to accept only digits you should use the OnKeyPress event and set the Key parameter to #0.</p> http://stackoverflow.com/questions/573392/delphi-2009-onkeydown-does-not-trap-as-delphi-2007-does/573988#573988 2 Answer by Jim McKeeth for Delphi 2009 OnKeyDown does not trap as Delphi 2007 does Jim McKeeth 2009-02-22T00:08:01Z 2009-02-22T00:08:01Z <p><strong>OnKeyDown</strong> gives you a <em>scancode</em>. <strong>OnKeyPress</strong> gives you the <em>character</em>. Been that way in every version of Delphi I can remember.</p>