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.
DECLARE INTEGER ShellExecute IN SHELL32.DLL ;
INTEGER lnHWnd, ;
STRING lcAction, ;
STRING lcFileName, ;
STRING lcExeParams, ;
STRING lcDefDir, ;
INTEGER lnShowWindow
lnResult = ShellExecute( 0, 'open', <Filename>, "", "", 1 )
oWord = createobject("Word.Application")
loDocument = oWord.Documents.Open(<Word Doc file>)
oWord.Visible = .T.
oWord.Activate()