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.
LOCAL oWord
oword = CREATEOBJECT("word.application")
oword.visible = .t.
Declare Integer FindWindow In user32;
STRING lpClassName, String lpWindowName
Declare Integer GetSystemMenu In user32 Integer HWnd, Integer bRevert
Declare Integer RemoveMenu In user32 Integer hMenu ,Integer nPosition,Integer wFlags
#Define MF_BYPOSITION 1024
HWnd = FindWindow("OPUSApp", 0)
hMnu = GetSystemMenu(HWnd, 0)
For I = 6 To 0 Step -1
Y = RemoveMenu(hMnu, I, MF_BYPOSITION)
Next I