3dwannab Posted June 4, 2014 Posted June 4, 2014 (edited) I have a bunch of lisp in a folder on a network with an edited acaddoc.lsp in the> Support file search path Trusted Location in the files ACADs option. I've recently upgraded to 2015 and it intermittently says: AutoCAD menu utilities loaded.; error: Automation Error. File system error This message only appears on some drawings. Other drawings the list of scripts in the acaddoc.lsp loads up no problem. Anybody else experiencing this? EDIT: Same setup was working in 2013 Edited June 4, 2014 by 3dwannab Quote
3dwannab Posted July 1, 2014 Author Posted July 1, 2014 It ended up that it was a script that loaded up at the start which caused the problem. Once the script was found and fixed it, I never had this problem again. Quote
BIGAL Posted July 2, 2014 Posted July 2, 2014 A good idea is to post the fix details for any one else I know I have to keep adding version numbers to some of my code (setq vrsn (vlax-product-key)) ((vl-string-search "R17.2" vrsn) (setq appstr "6.0")) ;09 ((vl-string-search "R18.0" vrsn) (setq appstr "7.0")) ;10 ((vl-string-search "R18.1" vrsn) (setq appstr "8.0")) ;11 ((vl-string-search "R18.2" vrsn) (setq appstr "9.0")) ;12 ? ((vl-string-search "R19.0" vrsn) (setq appstr "10.0")) ;13 ; 14 ??? ; 15 ??? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.