• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    AutoCAD 2007/2008/2009 DWG Format

    Reply
    Active Member
    Posts: 8
    Registered: ‎06-11-2012

    dim style keeps overriding

    154 Views, 6 Replies
    06-13-2012 08:50 AM

    We still use multiple dim styles for dimensioning (slowly moving over to annotative text).  I'm running into an issue where I save a template file with the multiple dim styles we use.  When I open the template, for some reason the first dim style, in this case "DIM 1", automatically has an overriden version when I open the dimension style manager.  Any ideas why this is happening?  I've attached an image showing what's happening.

    Please use plain text.
    *Expert Elite*
    Patchy
    Posts: 5,295
    Registered: ‎09-16-2009

    Re: dim style keeps overriding

    06-13-2012 08:55 AM in reply to: wellsws

    Do you have any autolisp loaded when your drawing started?

    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎06-11-2012

    Re: dim style keeps overriding

    06-13-2012 09:01 AM in reply to: Patchy

    I'm not sure.  How do I check to see if there are?  I'm pretty much a novice at this point.

    Please use plain text.
    *Expert Elite*
    Patchy
    Posts: 5,295
    Registered: ‎09-16-2009

    Re: dim style keeps overriding

    06-13-2012 09:06 AM in reply to: wellsws

    Start a drawing, hit F2, read and see what is loaded.

    Please use plain text.
    Active Member
    Posts: 8
    Registered: ‎06-11-2012

    Re: dim style keeps overriding

    06-13-2012 09:12 AM in reply to: Patchy

    Got it.  We are using a fastener lisp routine for steel shapes.  However, the overriding dim style is only happening in certain files.  The lisp routine is loaded with every file.  See attached image.

    Please use plain text.
    *Expert Elite*
    Patchy
    Posts: 5,295
    Registered: ‎09-16-2009

    Re: dim style keeps overriding

    06-13-2012 09:46 AM in reply to: wellsws

    Loaded is one thing, until you actually use a command in that lisp, that's when it change your dimstyle and not restoring it.

     

    Why not try to stop Al steel program at start up  and see if your dimstyle will change.

    Please use plain text.
    *Pro
    scot-65
    Posts: 1,928
    Registered: ‎12-11-2003

    Re: dim style keeps overriding

    06-13-2012 03:38 PM in reply to: wellsws

    If you cannot find the source of this problem, use a band-aid.

    In your S::smileyfrustrated:TARTUP, enter this at the very end:

     

    (setvar 'CMDECHO 0)

    (command ".dim" "Restore" (getvar 'DIMSTYLE) "Exit")

    (setvar 'CMDECHO 1)

    (princ)

     

    ???

    Please use plain text.