Hi,
I'd like to list all available Libraries in first column and each level of their respective class and property to next columns,
to compare Office 2010 with 2016 References.
I've managed to list only active references, using elements from MS Visual Basic Extensibility 5.3 library :
Code
Sub List_References()
Dim vp As VBProject
Dim r As VBIDE.Reference
Dim vc As VBIDE.VBComponent
Dim i As Long
Set vp = ActiveWorkbook.VBProject
For Each r In vp.References
Debug.Print r.Name, r.Description
Next r
End Sub
Display More
Thank you