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.
OpenFile('c:\Program File\abc\xyz.exe')
FUNCTION openfile(tcFile)
IF EMPTY(tcFile)
RETURN
ENDIF
IF NOT FILE(tcFile)
MESSAGEBOX("File [ " + ALLTRIM(tcFile) + " ] cannot be located. Please try again.",16,"Open file")
RETURN
ENDIF
DECLARE INTEGER ShellExecute IN shell32.DLL ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
ShellExecute(0,"open",tcFile,"","",1)
ENDFUNC
If gcGood
helpFile("'c:\Program File\abc\xyz.exe'")
Function helpFile(tcFile)
If Empty(tcFile)
Return
Endif
If Not File(tcFile)
Messagebox("File [ " + Alltrim(tcFile) + " ] cannot be located. Please try again.",16,"Open file")
Return
Endif
Declare Integer ShellExecute In shell32.Dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
ShellExecute(0,"open",tcFile,"","",1)
Endfunc
Endif