Author Topic: Purging Page setup...  (Read 9087 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
Purging Page setup...
« on: July 14, 2004, 11:48:21 AM »
How to purge "PAGE SETUP"
when plotting ??

if i enter _-purge i have these options...

Command: _-purge

Enter type of unused objects to purge
[Blocks/Dimstyles/LAyers/LTypes/Plotstyles/SHapes/textSTyles/Mlinestyles/Tablest
yles/Regapps/All]:


so if i type "P" for plotstyle....there is 0 found....

WHY ??

maybe i can't understand....
i have inserted a drawing with a page setup in it...
and than choose a page setup on the plot dialog box..

even if i purge ALL....these page setup won't clear..!!


any help here will be appreciated.
tx.



 :evil:  :evil:  :evil:  :evil:  :evil:  :evil:  :evil:
Keep smile...

Dent Cermak

  • Guest
Purging Page setup...
« Reply #1 on: July 14, 2004, 11:59:03 AM »
Sometimes you have to purge more than once  before AutoCad catches everything. Maybe try a purge "ALL" then do a purge "plotstyle' ?

hudster

  • Gator
  • Posts: 2848
Purging Page setup...
« Reply #2 on: July 14, 2004, 12:12:53 PM »
edit.

here you go, a wee lisp to dele the plot styles

Code: [Select]
;;  Function to delete all user plot set ups
(defun Del_Plot_config_list (/ curdwg pslayout x)
    (vl-load-com)
    (setq
      curdwg   (vla-get-ActiveDocument (vlax-get-Acad-Object))
      pslayout (vla-get-Layout (vla-get-PaperSpace curdwg))
    ) ;_ end of setq
    ;; Call RefreshPlotDeviceInfo before GetPlotDeviceNames
    (vla-RefreshPlotDeviceInfo pslayout)
    (vlax-for x   (vla-get-Plotconfigurations curdwg)
      (vla-delete x)
    ) ;_ end of vlax-for
  ) ; End Plot_config_list


ps I didn't write this, but I do use it a lot
Revit BDS 2017, 2016, 2015, 2014, AutoCAD 2017, 2016, Navisworks 2017, 2016, BIM360 Glue

Andrew H

  • Guest
Purging Page setup...
« Reply #3 on: July 14, 2004, 03:17:10 PM »
Page Setup and Plot Style are two different things. To delete unused Plot Styles use the purge command. But to delete the unused Page Setups you will either have to do it through a lisp or I use CDG Purge 3.0 (which is free).

http://www.caddevelopmentgroup.com/downloads.htm

Let me know if this helps.

Jassper

  • Guest
Purging Page setup...
« Reply #4 on: July 14, 2004, 11:56:15 PM »
Quote from: Andrew H
I use CDG Purge 3.0 (which is free).

http://www.caddevelopmentgroup.com/downloads.htm

Let me know if this helps.



Thats a really handy program, we use it alot.

Little

pmvliet

  • Guest
Purging Page setup...
« Reply #5 on: July 22, 2004, 10:17:01 AM »
Has anyone been able to get CDGpurge to work via a script routine?
It runs into a continuos loop when I have tried it....

Pieter

Andrew H

  • Guest
Purging Page setup...
« Reply #6 on: July 22, 2004, 10:25:52 AM »
I was having the same problem and have e-mailed Cad Development Group (CDG) and have yet to get a response.

When I do, I'll post what I find out.

daron

  • Guest
Purging Page setup...
« Reply #7 on: July 22, 2004, 07:39:20 PM »
Does not the lisp that was handed out prevy, work?

Andrew H

  • Guest
Purging Page setup...
« Reply #8 on: July 23, 2004, 09:28:54 AM »
My understanding is, that it does, but the program we're referring to (CDG Purge) has a few more options.

Also...

I finally received an e-mail from Cad Development Group yesterday concerning the script problem. They sent me the CDG Purge 4.0, but it still doesn't work in a script. It has the same looping problem. I'll keep everyone up to speed when I hear back from them.

Joel Roderick

  • Guest
Purging Page setup...
« Reply #9 on: July 23, 2004, 02:18:28 PM »
Hello guys!
Thanks for all the compliments on CDGPurge!

Sorry about the script problem.  I have that bug squashed and have cdgpurge 4.0 ready.

If any of you would like to test it, let me know and I will post the update here...

ronjonp

  • Needs a day job
  • Posts: 7531
Purging Page setup...
« Reply #10 on: July 23, 2004, 02:47:49 PM »
Joel,

I would like to test it. Please post it.

Thanks,

Ron :D

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

Slim©

  • Needs a day job
  • Posts: 6566
  • The Dude Abides...
Purging Page setup...
« Reply #11 on: July 23, 2004, 03:47:19 PM »
Same here, Joel.

Looks like something we all could use.
I drink beer and I know things....

Andrew H

  • Guest
Purging Page setup...
« Reply #12 on: July 26, 2004, 10:24:06 AM »
Thank you Joel for all the help and the great program.

I would also love to test the new and improved CDG Purge. Is this one different from the CDG Purge 4.0 you e-mailed me the other day because the one you e-mailed didn't have the script problem fixed.

Hope to help, not hurt.

Joel Roderick

  • Guest
Purging Page setup...
« Reply #13 on: July 26, 2004, 11:54:57 AM »
I have tested this one "in-house" and it seems to be working fine....

I don't see a way to attach files here, so I wil have to upload the new file to the website....

I was thinking of adding the ability to purge zero entity blocks.  For instance, we have the problem here of people using refedit on a block, and then deleting all the contents of the block and saving it.  You end up with a block that can only be selected using the filter command.

What do you guys think?

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Purging Page setup...
« Reply #14 on: July 26, 2004, 12:11:20 PM »
Quote from: Joel Roderick
I don't see a way to attach files here

Go to the lilly pond;
http://theswamp.org/lilly.pond/

create a new folder called something like joel or jroderick upload files to the newly created folder.
TheSwamp.org  (serving the CAD community since 2003)