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.
PUBLIC oForm, oForm2
oForm = CREATEOBJECT("clsform")
oForm.visible = .t.
oForm2 = CREATEOBJECT("clsform2")
oForm2.visible = .t.
DEFINE CLASS clsform as Form
width = 400
height = 400
Autocenter = .t.
windowtype = 0
showwindow = 2
ENDDEFINE
DEFINE CLASS clsform2 as Form
width = 150
height = 150
Top = 0
Autocenter = .f.
windowtype = 0
showwindow = 1
ENDDEFINE