2010-02-24 23:31 UTC
AutoCAD Message:
"The OpenDCL Runtime module failed to load. Please repair the OpenDCL installation and try again."
This is my first post. Hello. :) bummer first post though.
I currently have AutoCAD 2008 and 2010 installed on this 64bit machine.
The order of events I have went through:
>Installed OpenDCL Studio 5.1.2.3 (at least that is what the About says)
>After install - Drag and drop the _MasterDemo.lsp file into 08. I got the message above.
>Closed ODCL and AutoCAD
>Drag and drop _MasterDemo.lsp into 2010. Same message.
>ran OpenDCL.Runtime.5.1.2.3.msi
>added folders to support file search paths - same errors.
In another post (which I cant seem to find now) some code was posted as help to this problem:
(defun c:TestIt (/ odcl_arxpath)
(vl-load-com)
(princ (strcat "\n Demand Load Setting :"
(itoa (getvar "demandload"))
"\n"
)
)
(setq
odcl_arxpath (vl-registry-read (strcat "HKEY_LOCAL_MACHINE\\"
(vlax-product-key)
"\\Applications\\OpenDCL"
)
"Loader"
)
)
(princ
(strcat "\n ArxPath : " (VL-PRINC-TO-STRING odcl_arxpath) "\n")
)
(princ)
)
This is the output:
Any help would be very much appreciated. I was indirectly directed to OpenDCL from users at theswamp.org. From what I have read I am pretty excited to dive in. I am a bit slow to get into .net though I want to. For now though, I really want this to work. Thank you.
"The OpenDCL Runtime module failed to load. Please repair the OpenDCL installation and try again."
This is my first post. Hello. :) bummer first post though.
I currently have AutoCAD 2008 and 2010 installed on this 64bit machine.
The order of events I have went through:
>Installed OpenDCL Studio 5.1.2.3 (at least that is what the About says)
>After install - Drag and drop the _MasterDemo.lsp file into 08. I got the message above.
>Closed ODCL and AutoCAD
>Drag and drop _MasterDemo.lsp into 2010. Same message.
>ran OpenDCL.Runtime.5.1.2.3.msi
>added folders to support file search paths - same errors.
In another post (which I cant seem to find now) some code was posted as help to this problem:
(defun c:TestIt (/ odcl_arxpath)
(vl-load-com)
(princ (strcat "\n Demand Load Setting :"
(itoa (getvar "demandload"))
"\n"
)
)
(setq
odcl_arxpath (vl-registry-read (strcat "HKEY_LOCAL_MACHINE\\"
(vlax-product-key)
"\\Applications\\OpenDCL"
)
"Loader"
)
)
(princ
(strcat "\n ArxPath : " (VL-PRINC-TO-STRING odcl_arxpath) "\n")
)
(princ)
)
This is the output:
Demand Load Setting :3
ArxPath : C:\Program Files (x86)\Common Files\OpenDCL\OpenDCL.x64.17.arxAny help would be very much appreciated. I was indirectly directed to OpenDCL from users at theswamp.org. From what I have read I am pretty excited to dive in. I am a bit slow to get into .net though I want to. For now though, I really want this to work. Thank you.