Author Topic: network problem..  (Read 2574 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
network problem..
« on: January 20, 2005, 09:24:51 AM »
In AutoCAD 2004

We have a network path in the config panel under
Plotstyle section to make sure to have all the same CTB file for all users.

The problem with this, is....
we have lot of file in this folder and this make AutoCAD very very slow when
trying to open the config panel or when typing plot command.

Now the question is, is there any patch or any other way to do this..?

thanks.
Keep smile...

Dommy2Hotty

  • Swamp Rat
  • Posts: 1127
network problem..
« Reply #1 on: January 20, 2005, 11:04:03 AM »
Put all unused plot styles in a subfolder of that folder...

MikePerry

  • Guest
network problem..
« Reply #2 on: January 20, 2005, 04:12:15 PM »
Quote from: Dommy2Hotty
Put all unused plot styles in a subfolder of that folder...

Hi

I don't believe that will work as AutoCAD will look/search in all Sub-Folders of the Main Plot Style Folder.

Check out the following thread -

Sharing Out .pc3 Files

Have a good one, Mike

Dommy2Hotty

  • Swamp Rat
  • Posts: 1127
network problem..
« Reply #3 on: January 20, 2005, 04:14:50 PM »
Quote from: MikePerry
I don't believe that will work as AutoCAD will look/search in all Sub-Folders of the Main Plot Style Folder.


Hmmm...wasn't aware of that...I thought AutoCAD never searched sub-folders....guess that only applies to Support File Search Paths.

SPDCad

  • Bull Frog
  • Posts: 453
network problem..
« Reply #4 on: January 20, 2005, 04:29:57 PM »
Quote from: MikePerry

I don't believe that will work as AutoCAD will look/search in all Sub-Folders of the Main Plot Style Folder.


Mike is correct! Autocad search any subdirectory located within the potter directory.

I have our network setup with the root directory with our ctb files, and have 1
subdirectory where we keep all our consultant ctb.  Unfortunately because there are so many ctb, it really slow down autocad when plotting! :(
AutoCAD 2010, w/ OpenDCL

visit: http://reachme.at/spd_designs

Andrea

  • Water Moccasin
  • Posts: 2372
network problem..
« Reply #5 on: January 20, 2005, 06:29:00 PM »
Quote from: Dommy2Hotty
Put all unused plot styles in a subfolder of that folder...


Heun ?..

Just for info.....AutoCAD take all subfolder
Keep smile...

Andrea

  • Water Moccasin
  • Posts: 2372
network problem..
« Reply #6 on: January 20, 2005, 06:33:09 PM »
Quote from: MikePerry
Quote from: Dommy2Hotty
Put all unused plot styles in a subfolder of that folder...

Hi

I don't believe that will work as AutoCAD will look/search in all Sub-Folders of the Main Plot Style Folder.

Check out the following thread -

Sharing Out .pc3 Files

Have a good one, Mike



The problem here is not the PC3 but the CTB files..
Keep smile...

pmvliet

  • Guest
network problem..
« Reply #7 on: January 21, 2005, 12:42:31 PM »
There is a way you can do this not effecting the users profile.
there is a variable
Code: [Select]
(getenv "PrinterStyleSheetDir")

If you put this in a lisp routine and set that variable, you can then sort out your colortables in different directories, thus making it easier to find, but still having the control on pointing to the locked down area on the server.

I will be working on this and a who slwe of other items in the effor to get rid of profiles. When we need to work with clients standards, different plotters, colortables, stb's, fonts etc...

Pieter

Andrea

  • Water Moccasin
  • Posts: 2372
network problem..
« Reply #8 on: January 24, 2005, 11:43:25 AM »
Quote from: pmvliet
There is a way you can do this not effecting the users profile.
there is a variable
Code: [Select]
(getenv "PrinterStyleSheetDir")

If you put this in a lisp routine and set that variable, you can then sort out your colortables in different directories, thus making it easier to find, but still having the control on pointing to the locked down area on the server.

I will be working on this and a who slwe of other items in the effor to get rid of profiles. When we need to work with clients standards, different plotters, colortables, stb's, fonts etc...

Pieter


Hey...this is interesting,
but don't know when to use-it... :?
Keep smile...

pmvliet

  • Guest
network problem..
« Reply #9 on: January 25, 2005, 10:55:46 AM »
Code: [Select]
(defun c:Troy ()
  (Setenv "PrinterConfigDir" "I:\\autodesk\\ssoe\\autocad\\plotters_troy")
  (alert "Notice:\nThe Troy Plotters have been loaded!")
)

(defun c:Toledo ()
  (Setenv "PrinterConfigDir""I:\\autodesk\\ssoe\\autocad\\plotters_toledo")
  (alert "Notice:\nThe Toledo Plotters have been loaded!")
)


create a little lisp routine that gets loaded with each session. In this instance I am setting directories for different plotters so I can split them up by location. (We have many offices).

So for you, chance "PrinterConfigDir" to "PrinterStyleSheetDir". Then if you split out your companies colortables and your clients colrotables, you can keep them apart.

Code: [Select]
(defun c:company ()
(setenv "PrinterStyleSheetDir" "I:\\standards\\colortables\\company")
(alert "Notice:\nYou are now using company standard CTB's"))

(defun c:client ()
(setenv "PrinterStyleSheetDir" "I:\\standards\\colortables\\client")
(alert "Notice:\nYou are now using Client standard CTB's"))


Are all of your colortables for your company or are some from consultants? If you can split them up by percentage used or something like that, you can make the lists shorter.

Pieter

Andrea

  • Water Moccasin
  • Posts: 2372
network problem..
« Reply #10 on: January 25, 2005, 11:48:50 AM »
Pieter,


Thanks,
I need to make more test.....(very complicated here)

different profiles, menus, department, loaded programs, setting, etc...
for all clients...

ouf !!  :?
Keep smile...