Issue
How do I find the version of the Inventor that was used to create and save a certain Inventor document?
Solution
Open the document.
Run the following macro. It can be used to determine the major, minor, and service pack versions used to create/ save a document.
Private Sub SoftwareVersion() MsgBox ThisApplication.ActiveDocument.SoftwareVersionCreated.Major MsgBox ThisApplication.ActiveDocument.SoftwareVersionCreated.Minor MsgBox ThisApplication.ActiveDocument.SoftwareVersionCreated.ServicePack MsgBox ThisApplication.ActiveDocument.SoftwareVersionSaved.Major MsgBox ThisApplication.ActiveDocument.SoftwareVersionSaved.Minor MsgBox ThisApplication.ActiveDocument.SoftwareVersionSaved.ServicePackEnd Sub

Leave a Reply