Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
const
BackSpace = #8;
Numerics = [ '0'..'9', BackSpace ];
begin
if not ( key in Numerics ) then
key := #0;
end;