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.
unit uSite;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OleCtrls, SHDocVw;
type
TfrmSite = class(TForm)
WebBrowser1: TWebBrowser;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmSite: TfrmSite;
implementation
{$R *.dfm}
end.
procedure TfrmMain.btnLaunchWebSiteClick(Sender: TObject);
begin
frmSite.Show;
frmSite.WebBrowser1.Navigate('[URL unfurl="true"]http://www.whatever.com/');[/URL]
end;