+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    SteelDet
    Guest

    Default Dwg. size HUGE.....help

    Registered forum members do not see this ad.

    Using AutoCad 2000 and have drafting dwg's sized at 1600kb, even after purging EVERYTHING..........lol. Usually they're around 300-400kb in size. I've looked for a lisp program and can't seem to find one that works.

    Thanks,
    Betty

  2. #2
    Forum Deity
    Using
    not specified
    Join Date
    Jul 2004
    Location
    Anchorage, Alaska
    Posts
    2,074

    Default

    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))

  3. #3
    SteelDet
    Guest

    Default

    Thank you so much!!!
    cdgpurge worked!!!
    I looked half the afternoon trying to find a fix.......lol.

  4. #4
    Senior Member
    Using
    AutoCAD 2009
    Join Date
    Apr 2004
    Posts
    147

    Default

    hehe. I was just about to recommend that about the layer filters. It is something how much room that takes up.
    A baby seal walks into a club....

  5. #5
    Super Member
    Using
    Architectural DT 2007
    Join Date
    Dec 2002
    Location
    London
    Posts
    1,087

    Default

    Registered forum members do not see this ad.

    Strange that routine Ive run in some of my exitsing drawings and it says layer filters deleted and then I check the file size.Its increased in size!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts