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 restoremywindow;
var hwnd : integer;
begin
// find window with windowtitle 'MyWindowTitle'
hwnd:=FindWindow(nil,Pchar('MyWindowTitle'));
// only restore window when it is not minimized
if IsIconic(hwnd) then
ShowWindow(hwnd,SW_RESTORE);
end