I have added the following code to my program which, as i understood, must disable alphabets from being entered. I set the form's KeyPreview property to True, Next i added this code
procedure FormKeyPress(Sender: TObject; var Key: Char) ;
which was defined as
procedure TFibo.FormKeyPress(Sender: TObject; var Key: Char);
begin
if Key in ['a'..'z'] then Key := #0
end;
This does not seem to work, as i am able to enter a-z in the form's edit components; what am i doing wrong?
This is the code for my program
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TFibo = class(TForm)
lblInput: TLabel;
edtInput: TEdit;
procedure FormKeyPress(Sender: TObject; var Key: Char) ;
end;
var
Fibo: TFibo;
implementation
{$R *.dfm}
procedure Tfibo.FormKeyPress(Sender:TObject;var Key:char);
begin
if Key in ['a'..'z', 'A'..'Z'] then
Key := #0
end;
end.

if not(Key in ['0'..'9', '.']) thena better option to restrict it to numbers and decimal points only? Else, you'd block e but not ë... – Wim ten Brink Jun 27 '11 at 8:23