AutoCAD 2007/2008/2009 DWG Format
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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.
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Do you have any autolisp loaded when your drawing started?
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm not sure. How do I check to see if there are? I'm pretty much a novice at this point.
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Start a drawing, hit F2, read and see what is loaded.
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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.
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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.
Re: dim style keeps overriding
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If you cannot find the source of this problem, use a band-aid.
In your S:
TARTUP, enter this at the very end:
(setvar 'CMDECHO 0)
(command ".dim" "Restore" (getvar 'DIMSTYLE) "Exit")
(setvar 'CMDECHO 1)
(princ)
???

