Message 1 of 4

Not applicable
09-15-2015
06:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dear colleagues please help me with this bug that is driving me crazy.
I have a routine (.lsp) that launch a macro (.dbd). it works fine if i host the file in my local drive but when i relocate the routine on the network drive that i share with my coworkers the routine do nothing. do you know why?
the route in the lisp is my network path
i have add the network folder as a Trusted Location in Autocad
im using Autocad 2016
thanks!!
(defun c:OBSRENUM () (VBA-LOADIT "O:\\Cad\Operators Files - Re\\OBS Acad Tools\\CAD Scripts\\OBS_RENUM.dvb" "renum") ) (defun VBA-LOADIT (ProjName Macro) (if (findfile ProjName) (progn (vl-vbaload ProjName) (vl-vbarun Macro) );progn );if (princ) );defun (princ)
Solved! Go to Solution.