Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an automated save operation that has worked for years. It saves a copy using the respective drawing type
If IO.Path.GetExtension(odoc.FullFileName).Contains("dwg") Then
Dim Drawdoc As DrawingDocument = CType(odoc, DrawingDocument)
Drawdoc.SaveAsInventorDWG(SaveName, True)
Else
odoc.SaveAs(SaveName, True)
End IfI'm having the problem that as soon as the autosave function fires for a .dwg file, the version in the active document is altered causing the error message:
This does not occur when saving a .idw file.
Solved! Go to Solution.