View Single Post
 
Old 06-16-2017, 10:05 AM
wordguy wordguy is offline Windows 10 Office 2016
Novice
 
Join Date: Jun 2017
Posts: 7
wordguy is on a distinguished road
Default VBA code to enable a Word COM Add-In

Thanks for the idea Greg.

I've put your code into the following:

Sub printdescriptions()
Dim lngIndex As Long
Dim oCAIs As COMAddIns
Set oCAIs = Application.COMAddIns
For lngIndex = 1 To oCAIs.Count
Debug.Print Application.COMAddIns(lngIndex).Description
Exit For
Next
End Sub

Nothing prints.

Ideas?

Thanks.

Kurt
Reply With Quote