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.
for i := application.ComponentCount - 1 downto 0 do
begin
if application.components[i] is TForm then
(application.components[i] as TForm).close;
end;
for i := MainForm.MDIChildCount - 1 downto 0 do
MainForm.MDIChildren[i].close;