Path settings in Environment Manager
Any ideas?
Any ideas?
#DEFINE CSIDL_APPDATA 0x001a LOCAL lcFolderPath, lcAppData lcFolderPath = space(255) DECLARE SHORT SHGetFolderPath IN SHFolder.dll ; SHGetFolderPath(0, CSIDL_APPDATA, 0, 0, @lcFolderPath) lcAppData = Alltrim(lcFolderPath) lcAppData = ADDBS(SubStr(lcAppData,1, Len(lcAppData)-1)) USE (lcAppData + "Microsoft\Visual FoxPro 9\envmgr.dbf") IN 0 SHARED |
That is a nice code sample but maybe a little too much work to find appdata folder. ? File to see if it is installed or USE Home(7)+"envmgr"
In normal (default) installations it is in Home(7) (appdata) so you can simply do:
Browse