Howdy all,
When I run the code below, or any procedure using the "Fullpath" method, I get an error saying "Method 'Fullpath' of Object 'Reference' failed."
I'm assuming this is a dll issue. Can anyone tell me which dll might be the culprit, and if there is an elegant fix to this?
Thanks,
Mike
When I run the code below, or any procedure using the "Fullpath" method, I get an error saying "Method 'Fullpath' of Object 'Reference' failed."
Code:
Dim ref As Access.Reference
' Enumerate through References collection.
For Each ref In Access.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
Else
Debug.Print "GUIDs of broken references:"
Debug.Print ref.Guid
End If
Next ref
Thanks,
Mike