COMAddIns Property [Excel 2003 VBA Language Reference]

Returns the COMAddIns collection for Microsoft Excel, which represents the currently installed COM add-ins. Read-only.

Example

This example displays the number of COM add-ins that are currently installed.

Set objAI = Application.COMAddIns
MsgBox "Number of COM add-ins available:" & _
    objAI.Count

Applies to | Application Object