Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Detect Vault AddIn Log In and Out events

0 REPLIES 0
Reply
Message 1 of 1
sobalvarro
82 Views, 0 Replies

Detect Vault AddIn Log In and Out events

Dear experts,

 

I want to update an Inventor AddIn that detects when the Vault AddIn logs in and out. On my code for Inventor 2019 i used the EdmSignIn event from EdmSecurity, but now i tested on Inventor 2023 and this event is not raised anymore.

 

 'Inventor Vault AddIn Object
 Public WithEvents VaultEdm As EdmSecurity

'This is the event that occurs when within Inventor user logs in into Vault
Private Sub EdmSec_EdmSignIn(sender As Object, e As EventArgs) Handles VaultEdm.EdmSignIn
       Debug.WriteLine("LogIn")
End Sub
    
'This is the event that occurs when within Inventor user logs in from Vault
Private Sub EdmSec_EdmSignOut(sender As Object, e As EventArgs) Handles VaultEdm.EdmSignOut
       Debug.WriteLine("LogOut")
End Sub

 

How can I access those events again?

Tags (2)
0 REPLIES 0

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

Post to forums  

Technology Administrators


Autodesk Design & Make Report