TheSwamp

Code Red => Visual DCL Programming => AutoLISP (Vanilla / Visual) => OpenDCL => Topic started by: paul_s on August 24, 2009, 10:29:40 AM

Title: error message when loading opendcl from a shared drive
Post by: paul_s on August 24, 2009, 10:29:40 AM
Hello,

I installed "OpenDCL.Runtime.6.0.0.1.msi" in one computer. Then copied "OpenDCL.18.arx"
to a network drive that is being shared. Which I have done on all previous versions of opendcl.
..I have opendcl in my startup.

I get this error message when I try to load opendcl from one of the work stations.

"The OpenDcl local langauge resource module was not found or could not be loaded. OpenDCL cannot continue. Please reinstall OpenDcl Runtime to correct the problem."

How can I correct this problem. Do I now have to install opendcl in all the workstations?
Title: Re: error message when loading opendcl from a shared drive
Post by: paul_s on August 24, 2009, 10:55:44 AM
Hello,

After reading some of the previous post (which I should have done to begin with) I think
I know what to do. I copied the english's "runtime.res.dll" to the same shared folder and
its loading properly now.
Title: Re: error message when loading opendcl from a shared drive
Post by: alanjt on August 24, 2009, 12:40:55 PM
why not just have the install.msi in a shared path.
then at startup, run something like:
Code: [Select]
(and (or (not (findfile "C:\\Program Files\\Common Files\\OpenDCL\\OpenDCL.18.arx"))
         (not (member "OpenDCL.18.arx" (arx)))
     ) ;_ or
     (findfile "OpenDCL.Runtime.ENU.6.0.0.1.msi")
     (command "_.start" "OpenDCL.Runtime.ENU.6.0.0.1.msi")
) ;_ and

that way, every user has the runtime actually installed on their computer.
Title: Re: error message when loading opendcl from a shared drive
Post by: paul_s on August 24, 2009, 02:02:56 PM
Thanks, I'll try that.