Vault "Title" in inventor browser name"

Vault "Title" in inventor browser name"

ponka85
Contributor Contributor
181 Views
2 Replies
Message 1 of 3

Vault "Title" in inventor browser name"

ponka85
Contributor
Contributor

Hi

 

How do I get Inventor to show the "title" from vault in the Inventor browser?

 

I have tried the iLogic rule from here but I only get error message:

 

Solved: Re: Part Description in Assembly Browser - Autodesk Community - Inventor

 

'create reference to part
openDoc = ThisApplication.ActiveDocument

'format display name
openDoc.DisplayName = iProperties.Value("Project", "Part Number") & " (" & iProperties.Value("Project", "Description") & ")"
openDoc.Rebuild

'update
iLogicVb.UpdateWhenDone = True

 

Show this title...Show this title......here...here

0 Likes
182 Views
2 Replies
Replies (2)
Message 2 of 3

ponka85
Contributor
Contributor

Here's my modified code

 

'create reference to part
openDoc = ThisApplication.ActiveDocument

'format display name
openDoc.DisplayName = iProperties.Value("Title") & " <" & iProperties.Value("Title") & ">"
openDoc.Rebuild 'update iLogicVb.UpdateWhenDone = True

 Inventor_mvUOSWbXRl.jpg

0 Likes
Message 3 of 3

ponka85
Contributor
Contributor

Hi again!

 

I got it to work for the top assembly by changing the code, but how do I apply this for all the parts in the assembly?

 

'create reference to part
openDoc = ThisApplication.ActiveDocument

'format display name
openDoc.DisplayName = iProperties.Value("Project", "Part Number") & " (" & iProperties.Value("Summary", "Title") & ")"

openDoc.Rebuild

'update
iLogicVb.UpdateWhenDone = True

 

0 Likes