[SOLVED] - Error with runtime ?

Started by stephan_35 · 2009-04-23 11:54 UTC · 6 replies · SMF topic #727

Hello ,

I'm back, and i tried the newer 5.x opendcl arx .

I can't load arx from autocad, ask me to re-install open dcl runtime ....

I don't really know how to find what's wrong ...  :'(

Thanks for help.
Which MSI file did you install, the Studio or Runtime?  What exactly do you mean by "load arx"?  What is the error message?
author=owenwengerd link=topic=727.msg3542#msg3542 date=1240495454 wrote:
Which MSI file did you install, the Studio or Runtime?  What exactly do you mean by "load arx"?  What is the error message?


Hello,

here is the message :
The OpenDCL local language resource module was not found or could not be loaded.
OpenDCL cannot continue.
Please reinstall OpenDCL Runtime to correct the problem.


Arx opendcl were downloaded from runtime.msi (5.1.0.3)

Here is my lisp for launch:

(defun ObjectDCL_LoadArx ()
(setq $version_arx (strcat "OpenDCL"
  (if
    (and
      (setq proc_arch (getenv "PROCESSOR_ARCHITECTURE"))
      (< 1 (strlen proc_arch))
      (eq "64" (substr proc_arch (1- (strlen proc_arch))))
)
    ".x64."
    "."
)
  (substr (getvar "acadver") 1 2)
  ".arx"
))
  (if (member $version_arx (arx))
      (arxunload $version_arx)
)
  (if (not (member $version_arx (arx)))
      (arxload $version_arx "ObjectDCL.arx not found.")
)
)
(if (not $version_arx)(ObjectDCL_LoadArx))


Same message with FRA ou ENU opendcl editor (5.1.0.3), but maybe not depend of editor , because message appear when lisp try to load OpenDCL.arx  ???

Thanks for reply.
Did you move the arx to a network location?
author=stephan_35 link=topic=727.msg3543#msg3543 date=1240496269 wrote:
here is the message :
The OpenDCL local language resource module was not found or could not be loaded.
OpenDCL cannot continue.
Please reinstall OpenDCL Runtime to correct the problem.



This means that the local language resource module is missing. Most likely you moved the .arx file to a different location, and forgot to move the resource folders with it. It is best to leave everything installed in its original location and load the .arx with the OPENDCL command.
author=BazzaCAD link=topic=727.msg3544#msg3544 date=1240512701 wrote:
Did you move the arx to a network location?


Not at all !

I only move the arx files into the path of my soft path on the local drive.

Thanks.
author=owenwengerd link=topic=727.msg3545#msg3545 date=1240513431 wrote:

This means that the local language resource module is missing. Most likely you moved the .arx file to a different location, and forgot to move the resource folders with it. It is best to leave everything installed in its original location and load the .arx with the OPENDCL command.


Ok !

I move also local language folders (FRA/ENU/...) into my new local path .

OpenDCL works fine now.

Thanks !