2013-01-23 3 views
1

현재 내가 AutoCAD를 2012을 가지고 내의 AutoCAD에 대한 사용자 정의 만든 또한이 AutoCAD를 2013의 AutoCAD 2013 - 오류 : ARXLOAD는

로 업그레이드 할 못했습니다. 하지만 이걸로드하려고하면 이걸 얻습니다.

COM.VLX loaded .; 오류 : ARXLOAD 실패

Here is a part of my acaddoc.lsp: 
    ;; ACADDOC.LSP is loaded into memory before the drawing is completely  
    ;; initialized. S::STARTUP is called when a new drawing or an existing  
    ;; drawing is opened. And is guaranteed to perform any setup operations 
    ;; after a drawing is initialized.           

    (defun LoadARXVBA(/ strplatform strExt) 
     (if (wcmatch (getvar "platform") "*(x64)*") 
     (setq strExt "x64.arx") 
     (setq strExt ".arx") 
    ) 

      ;; load arx modules 
      (arxload (strcat "DetectESC" strExt)) 
      (arxload (strcat "osnap" strExt)) 
      (arxload (strcat "beditReactor" strExt)) 
      ;; load vba projects 
      (vla-loaddvb (acadobject) (findfile "sinkblock.dvb")) 
      (vla-loaddvb (acadobject) (findfile "triggers.dvb")) 
      (if (member "plotlog.arx" (arx));if loaded by acad.rx 
       (vla-loaddvb (acadobject) (findfile "PlotLog.dvb")) 
      ) 
      ;; connect to plotlog server 
      (if (member (strcat "plotlog" strExt) (arx)) 
       (vla-runmacro (acadobject) "StartMonitor") 
      ) 
      ;; visuallisp projects 
      (load "base.vlx") 
      (load "startup.vlx") 
     (load "TSLOAD"); Load TIMESAVERS' commands: 
      (defun EVALCHK (dummy /) 1) 
      ;; run stuff 
      (startup) 
    ) 


(defun-q main(/) 
    ;; load visuallisp & vba projects 
    (setvar "screenmenu" 1) 
    (setvar "menubar" 1)  
    (load "com.vlx") 
    (if (eq (vla-get-visible (acadobject)) :vlax-true) 
     (LoadARXVBA) 

    ) ;end if 
    (princ) 
) ;end main 

(setvar "savetime" 8) 



;; append 'main function to any posible existing S::STARTUP function 
(setq s::startup (append s::startup main)) 
;|«Visual LISP© Format Options» 
(100 2 1 2 nil "end of " 100 70 0 0 nil T T nil T) 
;*** DO NOT add text below the comment! ***|; 

아무도 도와 줄 수 있습니까? ARX ​​모듈이 필요합니다

답변

0

뭔가가 ARX 로딩에이 변경 몇 가지 장소에서 읽고는 ... 2013 년

+0

오웬, 그리고 내가 아마 origional 파일이 필요합니다 ... 아니면 다른 방법이 있습니까? – Ronny

+0

예, 원본 또는 다시 작성해야하는 소스 코드가 필요합니다. –