使用邱枫的安装制作程序很多时间了,在CAD2004-2006上一切OK,今天在2007-2008版本上测试安装,出现支持文件搜索路径加载不完整的现象,如: 设置了以下路径: (defun Init_scei () ;; 添加支持路径 (AddSupportPath (GetsceiPath) nil) (AddSupportPath (strcat (GetsceiPath) "\\阀门") nil) (AddSupportPath (strcat (GetsceiPath) "\\计算工具") nil) (AddSupportPath (strcat (GetsceiPath) "\\图签") nil) (AddSupportPath (strcat (GetsceiPath) "\\文档") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\spx") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\unit") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\S-DEMO") nil) (AddSupportPath (strcat (GetsceiPath) "\\dcg & listDCL") nil) (AddSupportPath (strcat (GetsceiPath) "\\加载应用程序") nil) (AddSupportPath (strcat (GetsceiPath) "\\阀门及管件") nil) (AddSupportPath (strcat (GetsceiPath) "\\代码组") nil) (AddSupportPath (strcat (GetsceiPath) "\\管件") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\notepad++") nil) (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\screenflash") nil) 在04-06上都能全部添加进去,而在07-08上实际只增加了最后一个路径,即: (AddSupportPath (strcat (GetsceiPath) "\\其他软件\\screenflash") nil) 请高手解答疑惑! |