Skip to content

Instantly share code, notes, and snippets.

@brucemcpherson
Created August 22, 2012 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brucemcpherson/3425929 to your computer and use it in GitHub Desktop.
Save brucemcpherson/3425929 to your computer and use it in GitHub Desktop.
How to get the installed references in the Excel VBE
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
@brucemcpherson
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment