The Courage Dog Posted November 17, 2008 Posted November 17, 2008 hi, i working for hundreds of drawings, my goal is to delete all PAGE SETUP NAME loaded on each drawings using lisp routine, instead of opening one-by-one & manuallly delete all page setup name manually....anybody who has the lisp routine that can automate this process? thanks in advance regards, the courage dog:( Quote
NoelStalker Posted December 3, 2008 Posted December 3, 2008 how do you manually delete a page setup? Quote
Lee Mac Posted December 3, 2008 Posted December 3, 2008 Go to "plot", then where it says "page setup name" click "add", select your page setup and click "delete" Quote
CmdrDuh Posted December 3, 2008 Posted December 3, 2008 I have VBA to do it, do you want that? Public Sub DelPConfig() Dim objPlotConfigs As AcadPlotConfigurations Dim objPlotConfig As AcadPlotConfiguration Set objPlotConfigs = ThisDrawing.PlotConfigurations For Each objPlotConfig In objPlotConfigs objPlotConfig.Delete Next End Sub Quote
arjun_samar Posted December 3, 2008 Posted December 3, 2008 sir, last 4 months im using autocad 2005, now im using 2007, how can i attatch landscape in autocad 2007 when the lsnew, lslib, and lsedit commands are removed in 2007 Quote
arjun_samar Posted December 3, 2008 Posted December 3, 2008 Go to "plot", then where it says "page setup name" click "add", select your page setup and click "delete" sir, how can i create landscape command lsnew, in autocad2007 when the command is removed Quote
Dinochrome Posted March 6, 2014 Posted March 6, 2014 I have VBA to do it, do you want that? Public Sub DelPConfig() Dim objPlotConfigs As AcadPlotConfigurations Dim objPlotConfig As AcadPlotConfiguration Set objPlotConfigs = ThisDrawing.PlotConfigurations For Each objPlotConfig In objPlotConfigs objPlotConfig.Delete Next End Sub Thanks CmdrDuh Quote
Dinochrome Posted March 6, 2014 Posted March 6, 2014 Nothing is as easy as it seems. ...back to the search function... I wonder why Autodesk doesn't just allow it to be part of the Purge command. Quote
Dinochrome Posted March 6, 2014 Posted March 6, 2014 ....and also refer to this: Loading Applications Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.