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.
*GETWPFILE.PRG
#DEFINE HKEY_CURRENT_USER -2147483647 && BITSET(0,31)+1
LOCAL lcRegValue, lcRegfile, lnRetVal, oReg
lcRegValue = ""
lcRegfile = "REGISTRY"
lnRetVal = 0
SET PROCEDURE TO (m.lcRegfile) ADDITIVE
oReg = CreateObject("Registry")
lnRetVal = oReg.GetRegKey("Wallpaper",@lcRegValue,;
"Control Panel\desktop", HKEY_CURRENT_USER)
RELEASE oReg
RELEASE PROC (m.lcRegfile)
RETURN iif(lnRetVal = 0, lcRegValue, "Couldn't Find")