I want to create a sub which control the presence of all references added for the good working of my macro.
I want use this code found on internet:
Dim Ref As Reference
For Each Ref In References
Debug.Print Ref.Name & " - " & Ref.FullPath
Next Ref
The problem is that I receive an error message because VB doesn’t recognize “Reference” or “References” objects.
These objects can’t be used with the VBA code used by BO?
Correct … there is no “References” object in the object model. Your internet reference must have been for some other piece of software, not Business Objects. The only thing comes to mind quickly with a path is a document. Is that what you’re trying to get information on?