home *** CD-ROM | disk | FTP | other *** search
- unit PluginPreferences;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
-
- type
- TfmPluginPreferences = class(TForm)
- Edit1: TEdit;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- procedure Edit1KeyPress(Sender: TObject; var Key: Char);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- fmPluginPreferences: TfmPluginPreferences = NIL;
-
- implementation
-
- {$R *.DFM}
-
- procedure TfmPluginPreferences.Edit1KeyPress(Sender: TObject;
- var Key: Char);
- begin
- if (key < '0') or
- (key > '9')
- then
- key := #0;
- end;
-
- end.
-