Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

iProperties - Design Assistant - Detail Tab

4 REPLIES 4
SOLVED
Reply
Message 1 of 5
Lancasterm
530 Views, 4 Replies

iProperties - Design Assistant - Detail Tab

When you look at iProperties In Design Assistant (and Windows) of an Inventor file you have a "Detail" tab that allows you to see which Inventor version created it and when it was last updated.   Is there a way I can pull that information in so I can see it while in Inventor & looking at the part?  Or is there some program code that already does that?

 

Inventor 2015 Pro SP1

4 REPLIES 4
Message 2 of 5

Hi Lancasterm,

 

Here is a quick iLogic rule that you can run to get this information:

 

On second thought, this gives the version and build of Inventor you are running, not the version of the file. Smiley Sad  Off I go to search...

 

 

sVersion = ThisApplication.SoftwareVersion.DisplayName
MessageBox.Show(sVersion, "Version Info")
'write out the info to the comments iProperty
iProperties.Value("Summary", "Comments") = sVersion

 I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

Message 3 of 5

Hi Lancasterm,

 

Here is an iLogic rule to find the file version created and saved information.

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

 

 

oCreated = ThisDoc.Document.SoftwareVersionCreated.DisplayName
oSaved = ThisDoc.Document.SoftwareVersionSaved.DisplayName MessageBox.Show("This file was created with: Inventor " & oCreated _ & vblf & "This file was lasted saved with: Inventor " & oSaved, "iLogic")

 

Message 4 of 5

Curtis

 

Thanks..  Exactly what I was looking for...

Message 5 of 5
Maxim-CADman77
in reply to: Lancasterm

What about reading "Previous Version" iProperty value?

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums