- CADDManager Blog - https://www.caddmanager.com/CMB -

AutoCAD Bugs Me

I keep a file on my hard drive and make a note of things that I think should be fixed in AutoCAD. The list is called “AutoCAD Bugs Me” and here is one or two of the things on the list. Maybe these should be wish list items I could post on AUGI?

1. When you have multiple files open from differing locations, “Open” should remember where you opened each file from and go there depending on which file is active.

2. We need a way to identify and stop people from calling up old files in 2006 and saving them without knowing that it should have stayed a 2000 format files. Provide a “save as original version” option that does it automatically.

Do you have a wish list item?

6 Comments (Open | Close)

6 Comments To "AutoCAD Bugs Me"

#1 Comment By Anonymous On June 1, 2005 @ 1:28 PM

One big AMEN to item #1! Along the same lines, I’ve always felt Plot-to-File directory should be current drawing’s directory. Or maybe a toggle between current and last used.

#2 Comment By Anonymous On June 2, 2005 @ 3:31 AM

I agree point 1 is a must. Also be helpful if the xref search path was remembered (separately) as well. I’d also like to see an interface more intuitive (like microstation). Guess I’ll never really be converted…

#3 Comment By Anonymous On June 3, 2005 @ 12:52 AM

What would be good and I really hope they do it one day, is the ability to xref in a single layer of a drawing.

Co-ordination drawings would be so much easier, and smaller, this way.

#4 Comment By Jerlin On June 7, 2005 @ 3:12 AM

I like that Idea! Let me share some more,
1. What about a transparent hatch fill, which we can use as a color overlay on drawings. (The latest gradient hatch is very good, but think if it has some transparency!)
2. We need little more compatible tools for OLE objects (like picture toolbar in MS Word) to crop/trim them to avoid some unwanted areas.

#5 Comment By Anonymous On June 23, 2005 @ 12:20 PM

Hi Mark,

I’ve put these two requests into my wish list for the next ACAD release. I can’t make any promises just yet, but I wanted to let you know they are being tracked.

-Eric

Eric Stover
AutoCAD Product Manager
Autodesk, inc.

#6 Comment By Anonymous On July 7, 2005 @ 5:19 AM

Mark,

Here’s a workaround to #1. It doesn’t use the same “file open” dialog as the Open command, but works well.

(defun C:OPENCURR (/ dwg)
(setq dwg (getfiled “Select drawing” (getvar “DWGPREFIX”) “dwg” 0))
(if dwg (vla-activate (vla-open (vla-get-documents (vlax-get-acad-object)) dwg)))
(princ))

I have users that have replaced their “Ctrl-O” shortcut to use this instead.

Enjoy!

Chris Lindner
AUGI HotNews Manager