08-07-2020
04:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
08-07-2020
04:38 AM
it can be done in addin troug OnActivateCommand event:
for example:
Private Sub ui_OnActivateCommand(CommandName As String, Context As NameValueMap) Handles oUserInputEvents.OnActivateCommand
On Error Resume Next
Select Case CommandName
Case "VaultCheckin"
'or
Case "VaultCheckinTop"
End Select
End Sub