At a glance, it appears that you're using the correct parameters (at least in type)... From the Map developer documentation (LISP):
Originally Posted by AutoCAD Map 3D 2010 AutoLisp Reference, ade_odsetfield
... For those who'd like to access the Map developer documentation (LISP) for themselves:
HTHCode:(vl-load-com) (defun c:AcMapLisp (/ file) (if (setq file (findfile (strcat (vl-registry-read (strcat "HKEY_LOCAL_MACHINE\\" (if vlax-user-product-key ; If 2013 (vlax-user-product-key) ; Use 2013 function (vlax-product-key) ; Use legacy function ) ) "ACADLOCATION" ) "\\help\\acmaplisp.chm" ) ) ) (startapp "explorer" file) (prompt "\n** File not found ** ") ) (princ) )




Reply With Quote
Bookmarks