Variable uses an automation type not supported in visual basic

N

nigel

I ned to find the reference for Visual basic for
apllications extensibility 5.3 what is the file name. In
the code windows you cannot see the whole path to it

Thanks
 
C

Cheryl Fischer

You can view each of the references and their properties with the following
code:

For Each Item In Application.References
MsgBox Item.Name & " - " & Item.FullPath
Next Item



hth,
 
Top