Print Page | Close Window

AutoDac 2017 changed parameters

Printed From: CAD Forum
Category: EN
Forum Name: AutoCAD
Forum Description: Discussion about AutoCAD and AutoCAD LT, viewers, DWG and DWF formats, Design Review, AutoCAD 360, add-ons
URL: https://www.cadforum.cz/forum_en/forum_posts.asp?TID=12611
Printed Date: 16.May.2026 at 00:02


Topic: AutoDac 2017 changed parameters
Posted By: graemeian
Subject: AutoDac 2017 changed parameters
Date Posted: 30.Jan.2018 at 18:40
I started my AutoCad2017 recently and a few parameters have changed. Grid is now on and it is locked in some ISOxxx mode. Is there a simple way to change these and other parameters on startup? I know one can go to name.exe and add a bunch of switches. Likewise one can do this with any name.exe on most any PC. These parameters did not change that way and there should be a way to change them to my preference. I tried making changes and then re-saving it in my named preference but was not successful. Please help.




Replies:
Posted By: Kent Cooper
Date Posted: 30.Jan.2018 at 19:31
Read in Help about making a file called acaddoc.lsp, which [if it finds one] AutoCAD will run upon opening every drawing.  In it, for the situations you mention, you can including forcing the Grid to be off, and the Snap Style to be rectangular rather than isometric, with these lines:
 
(setvar 'gridmode 0)
(setvar 'snapstyl 0)
 
If you don't want these settings forced to be that way in every drawing, but only on Startup, look into a file called acad.lsp instead, which runs when AutoCAD is started.  Or in the APPLOAD dialog box, put a .lsp file to do it in the "Startup Suite."


Posted By: John Connor
Date Posted: 30.Jan.2018 at 23:50
When you made your changes did you also save your workspace?

-------------
"Humans have a strength that cannot be measured. This is John Connor. If you are reading this, you are the resistance."

<<AutoCAD 2015>>




Print Page | Close Window