Message 1 of 11
Save a document using Inventor VBA Macro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can anybody help?
I am trying to automatically save an inventor document (ipt, idw or iam) using a VBA macro.
here is my code so far....
Dim oDoc As Document
Set oDoc = ThisApplication.ActiveDocument
If oDoc Is Nothing Then Exit Sub
oDoc.Save
But Inventor keeps crashing every time I run the macro.
What is wrong?
Many thanks in advance!!!!
IsoCAM