List of references for compiled .mde's

  • Thread starter Thread starter AA
  • Start date Start date
A

AA

How can i get a list of references that my compiled Mde
uses, I'd like to get the full path name, the reference
wizard is unable to show the complete path.

or,

How can i compare the references my .mde uses versus the
available references on the host computer??

my company has poorly managed their upgrades and im
trying to make sure all users use the correct references
i intended. (unfortunaley i dont have the packaging
wizard to do this...)

thanks!
 
Sub ListReferences()
On Error Resume Next

Dim refCurr As Reference

For Each refCurr In Application.References
If refCurr.IsBroken = True Then
Debug.Print "Broken Reference: " & refCurr.GUID
Else
Debug.Print refCurr.Name & ": " & refCurr.FullPath
End If

End Sub
 
Back
Top