It could be an "unpurgeable" block that isn't being used. But quite possibly is one of many things that don't purge - Layer Filters, Registered Application, Layer States, Unnamed Groups. These can be purged with "cdgpurge". An older version can still be downloaded at http://www.caddepot.com/dcd1/Autodes...s/index-8.html
A likely culprit is Layer Filters. You just need a little lisp to get those. try this:
(princ "\nType LFD to start")
(defun C:LFD ()
(vl-Load-Com)
(vl-Catch-All-Apply
'(lambda ()
(vla-Remove (vla-GetExtensionDictionary
(vla-Get-Layers
(vla-Get-ActiveDocument
(vlax-Get-Acad-Object))))
"ACAD_LAYERFILTERS")))
(princ "\nAll layer filters have been deleted.")
(princ))



Reply With Quote

Bookmarks