Getting the Inventor document’s software versions along with the saved and created details

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

Comments

Leave a Reply

Discover more from Autodesk Developer Blog

Subscribe now to keep reading and get access to the full archive.

Continue reading