Created
August 22, 2012 14:05
-
-
Save brucemcpherson/3425929 to your computer and use it in GitHub Desktop.
How to get the installed references in the Excel VBE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub refG() | |
Dim r As Reference | |
With ActiveWorkbook.VBProject | |
For Each r In .References | |
Debug.Print r.GUID, r.name, r.Major, r.Minor, r.description | |
Next r | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for more info see - http://ramblings.mcpher.com/Home/excelquirks/snippets/refs