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.
// In the form declaration
private
procedure WMSize(var Msg : TMessage); message WM_SIZE;
// In the form implementation
procedure TMyForm.WMSize(var Msg : TMessage);
begin
// Do something
end;
procedure TfrmDates.WMSize(var Msg : TWMSIZE);
begin
if msg.SizeType=SIZE_MINIMIZED then
self.hide;
end;
procedure WMClose(var Msg : TWMCLOSE); message WM_CLOSE;
procedure TMainform.WMClose(var Msg : TWMCLOSE);
begin
self.Hide;
end;