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.ApplicationEvents1Idle(Sender: TObject;
var Done: Boolean);
begin
inc(IdleCount);
caption:=inttostr(idlecount);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
idlecount:=0;
end;