PDA

View Full Version : Disable automatic license grab


jvmullis
07-31-2003, 06:32 AM
We have one IGES export license in SolidDesigner that is shared as needed by several users. The license is automatically grabbed by the first person to open the software each day. Is there a way to disable this?

tom kirkman
07-31-2003, 06:41 AM
Edit the file called

corp_modules.dat

This file sets what is started when soliddesigner starts. There is a group of lines related to turning on the iges module.

("IGES_3D"
:label "IGES"
:act-fun (activate-iges_3d)
:deact-fun (deactivate-iges_3d)
:startup :yes
:special :sd-access)

Change the line :startup :yes

to :startup :no

("IGES_3D"
:label "IGES"
:act-fun (activate-iges_3d)
:deact-fun (deactivate-iges_3d)
:startup :no
:special :sd-access)

With this file you can set other modules that are turned on automatically including annotation.

I hope this helps

Tom

jvmullis
07-31-2003, 06:55 AM
That did it. Thanks.