Is there a way to import page setups without the use of the dialog box? Through lisp, vlisp or vba?
You need to add support file search path in options, where you keep page setup standard file. (defun CSETUP ( ) (command "PSETUPIN" "PLOT 1050C STANDARD.dwt" "*") ) (defun csetd () (vl-load-com) (vlax-for ps (vla-get-plotconfigurations (vla-get-activedocument (vlax-get-acad-object))) (vla-delete ps) ) ) Khan Through lisp, vlisp or vba?
Here is a button for you. ^C^C.-PSETUPIN "PageSetups.dwg" "*" Where PageSetups.dwg is a drawing with the desired set ups saved.