Author Topic: error message when loading opendcl from a shared drive  (Read 3796 times)

0 Members and 1 Guest are viewing this topic.

paul_s

  • Guest
error message when loading opendcl from a shared drive
« 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?

paul_s

  • Guest
Re: error message when loading opendcl from a shared drive
« Reply #1 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.

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: error message when loading opendcl from a shared drive
« Reply #2 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.
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

paul_s

  • Guest
Re: error message when loading opendcl from a shared drive
« Reply #3 on: August 24, 2009, 02:02:56 PM »
Thanks, I'll try that.