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.
var
frm Form
endvar
const
FILENAME = "c:\\iconpath\\myicon.ico" ; adjust as needed
endConst
frm.attach()
frm.setIcon( FILENAME )
method open(var eventInfo Event)
if eventInfo.isPreFilter() then
;// This code executes for each object on the form
else
;// This code executes only for the form
doDefault
setTitle( "Whatever you want" )
endIf
endMethod
method open(var eventInfo Event)
var
strMatch,
strTitle String
endVar
if not eventInfo.isPreFilter() then
doDefault
strTitle = getTitle()
if strTitle.match( "[..]", strMatch ) then
setTitle( strMatch )
endIf
endIf
endMethod