VFP开发的系统路径是怎么定义或访问的?
如system文件夹下有datas、forms、bmp、rept文件夹,我在写程序的时候要访问datas目录下的一个查询1.QPR,请教这个访问的代码要怎么写,路径要怎么表示?我用do datas\1.QPR会提示找不到路径
[ 本帖最后由 race13 于 2014-2-26 14:40 编辑 ]
cCurrentProcedure = SYS(16,1) nPathStart = AT(":",cCurrentProcedure)- 1 nLenOfPath = RAT("\", cCurrentProcedure) - (nPathStart) mypath=SUBSTR(cCurrentProcedure, nPathStart, nLenofPath) SET Default TO (mypath)在主程序中有这几句,EXE文件系统所在目录可以是任意一个地方的