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 TForm2.Button1Click(Sender: TObject);
var
F : TForm1;
begin
F := TForm1.create( application );
try
if F.showModal = mrOK then
beep;
finally
F.Free;
end;
end;
begin
with TForm1.create( application ) do
try
if showModal = mrOK then
beep;
finally
free;
end;