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 GetShortPathName ;
IN WIN32API ;
STRING tcLongPath, ;
STRING@ tcShortOut, INTEGER tnShortOutLength
lcShortName = SPACE(1024)
lnLength = GetShortPathName("c:\program files\myapp\data\*.*", @lcShortName, LEN(lcShortName))
IF lnLength != 0
* File exists
lcShortName = LEFT(lcShortName, lnLength)
ELSE
* Error
ENDIF