Author Topic: PC3 ...  (Read 2988 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
PC3 ...
« on: April 12, 2005, 05:09:51 PM »
Hi,

I have configured AutoCAD to take PC3 file located to a specific folder in search path directory and it work well,

But how can i remove the existing printer..?
 ex:

HP laserjet 4MV
\\server\printer
FORMAT1.PC3

?
Keep smile...

whdjr

  • Guest
PC3 ...
« Reply #1 on: April 12, 2005, 05:29:56 PM »
Maybe remove the original search path...?

Andrea

  • Water Moccasin
  • Posts: 2372
PC3 ...
« Reply #2 on: April 14, 2005, 10:50:39 AM »
Quote from: whdjr
Maybe remove the original search path...?


allrady removed....but still the same. :cry:
Keep smile...

Kate M

  • Guest
PC3 ...
« Reply #3 on: April 14, 2005, 12:38:01 PM »
Are you trying to get rid of a *printer* or a PC3 file?

pmvliet

  • Guest
PC3 ...
« Reply #4 on: April 14, 2005, 12:41:57 PM »
tools, options, plotting tab. for 2k2 and 2k4 it is in the lower left hand corner. Select Hide system plotters.

for 2k5 and maybe 2k6, plot and publish tab, right side about 2/3rd down
there is Hide system printers.

probably would be a variable somwhere that it could be set....
need to look into that as that would be helpful...

Pieter

MikePerry

  • Guest
PC3 ...
« Reply #5 on: April 14, 2005, 05:31:51 PM »
Hi

(getenv "HideSystemPrinters") ;Returns current value

(setenv "HideSystemPrinters" "1") ;Hide Windows System Printers

Please note that Environment Variables as case sensitive ie. UPPERlower case is important, therefore for the above to work, type as shown.

Have a good one, Mike

whdjr

  • Guest
PC3 ...
« Reply #6 on: April 14, 2005, 05:35:59 PM »
I tried this in Acad2000 and it let me set it, but it didn't do anything. :?

MikePerry

  • Guest
PC3 ...
« Reply #7 on: April 14, 2005, 05:43:05 PM »
Quote from: whdjr
I tried this in Acad2000 and it let me set it, but it didn't do anything. :?
Hi

It should work from AutoCAD 2000 upwards....

Works in AutoCAD 2002, 2004 & 2005 (sorry they are the only ones I can test on at the moment).

Have a good one, Mike

whdjr

  • Guest
PC3 ...
« Reply #8 on: April 15, 2005, 08:28:55 AM »
I checked the Environment Variables PDF from the AutoCAD website and it's supposed to work but mine still show up...oh well. :?

Andrea

  • Water Moccasin
  • Posts: 2372
PC3 ...
« Reply #9 on: April 15, 2005, 08:54:30 AM »
Quote from: MikePerry
Hi

(getenv "HideSystemPrinters") ;Returns current value

(setenv "HideSystemPrinters" "1") ;Hide Windows System Printers

Please note that Environment Variables as case sensitive ie. UPPERlower case is important, therefore for the above to work, type as shown.

Have a good one, Mike


Mike,
Exactly what i need....

thanks.
Keep smile...

pmvliet

  • Guest
PC3 ...
« Reply #10 on: April 15, 2005, 01:15:45 PM »
Thanks Mike!