Tools | References

G

Guest

Can someone tell me:
1. Where in the registry the list to references are held?
2. Whether it is possible to read that list using VBA instead of using
RegRead?

I can read the references that are checked in using VBA; I'd like to be able
to read all the available references.
Thanks.
 
B

Bob Phillips

This will list all set references

Dim ref As Object

For Each ref In ThisWorkbook.VBProject.References
Debug.Print ref.Description
Next ref


--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)
 
G

Guest

Bob Phillips said:
This will list all set references

Thanks, but as I said in the original post, I can already do this.

What I need is to be able to enumerate all the available references, not
just the ones being used. I know this is in the Registry but cannot remember
where!
 

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

Top