Message 1 of 2
Project reference list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi to all,
I have a simple procedure made on Excel, for exporting some object reference point in Autocad.
Unfortunately not all team has the same machine with the same software versions, so I would like to have a list of project reference, in order to customize some declaration in the correct way.
I found the below procedure, that I'm trying to run in excel VBA, but I got an error that I'm not able to understand the reasons, so I'm searching help in this forum.
Ref = Application.VBE.ActiveVBProject.References
For Each Ref In ActiveWorkbook.VBProject.References
RefName = Ref.Name
RefDesc = Ref.Description
RefPath = Ref.FullPath
Next
Error got is Run Time error 1004.
Thank you to all.