Variable uses an automation type not supported in visual basic

  • Thread starter Thread starter nigel
  • Start date Start date
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
 
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,
 
Back
Top