Reference list

  • Thread starter Thread starter reidarT
  • Start date Start date
R

reidarT

Is it possible to open the reference list programatically?
I want the users to check if all references are OK and none missing.

reidarT
 
If *no* references are missing, you can loop through the References
collection like this:
Function ShowRefs()
Dim ref As Reference
For Each ref In References
Debug.Print ref.Name, ref.FullPath
Next
End Function

The trouble is that if any references are broken, attempting to do anything
programmatically is likely to fail. It will not be possible to set or fix
broken references programmatically

It is possible to check for broken references. For details, see michka's
article:
How to guarantee that references will work in your applications
at:
http://www.trigeminal.com/usenet/usenet026.asp?1033
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top