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.
library printdll; uses Forms, Windows,
pdll in 'pdll.pas' {Form1};
{$R *.RES}
procedure showmenu;
begin
Application.Run;
end;
exports
showmenu index 1;
var
HI: HIcon;
H: THandle;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
H := LoadLibrary('PRINTDLL.DLL');
try
HI := LoadIcon(h, PCHAR('MAINICON'));
Application.Icon.Handle := HI;
finally
FreeLibrary(H);
end;
end.