We've got VBA macros that we've used for several years to manage our drawings (with both AutoCAD and AutoDesk Map). The macros basically open and close a large amount of drawings and extract or change attribute information. The GetObject function is used to open drawings (i.e. - Set AcadDoc = GetObject(FileName)). The macros work fine with AutoCAD 2005, but not with AutoDesk Map 2005. With Map 2005 every time the GetObject function is used to open a drawing, first a temporary drawing (called Drawing1.dwg, Drawing2.dwg, etc) is created, closed, and then the desired drawing is opened. Everytime a temporary drawing is closed a dialog box asking "Save changes to Drawing1.dwg?" is displayed. Macro execution then stops until a user responds to the dialog box. Has anybody else run across this, and is there a fix?