Sub ReferenceProperties()
Dim ref As Reference
' Enumerate through References collection.
For Each ref In References
' Check IsBroken property.
If ref.IsBroken = False Then
Debug.Print "Name: ", ref.Name
Debug.Print "FullPath: ", ref.FullPath
Debug.Print "Version: ", ref.Major & "." & ref.Minor
MsgBox ref.guid & vbLf & ref.FullPath
Else
Debug.Print "GUIDs of broken references:"
Debug.Print ref.guid
MsgBox ref.guid
End If
Next ref
End Sub