0

Is is possible to access an outlook add-in via redemption, rather than me adding the add-in to my application, I am not sure if this is possible.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45

1 Answers1

0

Redemption is a wrapper around Extended MAPI, not Outlook. So, it doesn't provide anything for dealing with Outlook features like add-ins.

You can get the Outlook running instance or create a new one of none exists and then access the COM add-ins list. The COMAddIns property of the Application class returns a COMAddIns collection that represents all the Component Object Model (COM) add-ins currently loaded in Microsoft Outlook.

Private Sub CountCOMAddins() 
 MsgBox "There are " & Application.COMAddIns.Count & " COM add-ins." 
End Sub
Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45