Get GUID of other add in

Get GUID of other add in

gert-leonvanlier
Collaborator Collaborator
558 Views
3 Replies
Message 1 of 4

Get GUID of other add in

gert-leonvanlier
Collaborator
Collaborator

I want to acces the Vault add in in Inventor. It looks like that I need the GUID of this add in. Is there a way to find this GUID or any other method to access the Vault add in?

0 Likes
Accepted solutions (1)
559 Views
3 Replies
Replies (3)
Message 2 of 4

bradeneuropeArthur
Mentor
Mentor

Inventor Vault {48B682BC-42E6-4953-84C5-3D253B52E77B}

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

Message 3 of 4

gert-leonvanlier
Collaborator
Collaborator

Thank you very much!

 

But is there a way to find the GUID myself?

0 Likes
Message 4 of 4

bradeneuropeArthur
Mentor
Mentor
Accepted solution

you can use this in VBA:

 

Public Sub GUID()

Dim inv As Inventor.Application
Set inv = ThisApplication
Dim a As Inventor.ApplicationAddIn
For Each a In inv.ApplicationAddIns
'MsgBox (a.DisplayName & "" & a.ClassIdString)
Debug.Print a.DisplayName & "" & a.ClassIdString
Next
End Sub

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature