New CADforum look launched.
Over 1.081.000 registered users (EN+CZ). New 1D nesting and 3D nesting tools, updated Color converter. New AutoCAD 2025 commands and variables. Learn about twiGIS.
Over 1.081.000 registered users (EN+CZ). New 1D nesting and 3D nesting tools, updated Color converter. New AutoCAD 2025 commands and variables. Learn about twiGIS.
CAD tip # 7723:
Question
A
If you want to quickly close (abandon, quit) all drawings opened in your AutoCAD session, without saving and without any prompts and questions, you can use the following VisualLISP macro:
;Quit all drawings without saving (CAD Studio - www.cadforum.cz) (vl-load-com) (defun C:QuitAll ( / dwg) (vlax-for dwg (vla-get-Documents (vlax-get-acad-object)) (if (= (vla-get-active dwg) :vlax-false)(vla-close dwg :vlax-false)) ) (command "._close" "_y") )Save this code to a LSP file (or download the ready-made QuitAll.lsp) and load it in AutoCAD using APPLOAD. The command QuitAll then closes all opened drawings and leaves AutoCAD in a "zero-doc" state. Please use this command carefully - all unsaved changes will be lost!
To quit multiple DWG drawings including optional save, use the Express Tools command QQUIT.
ACAD
*CAD
12.1.2011
26052×
applies to: AutoCAD ·