2003 References.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, Saturday;
Is their a smart way to record to txt-file what all the references are on a given Project?
 
Jim Shores said:
Is their a smart way to record to txt-file what all the references are on
a given Project?


Function PrintRefs()
Dim i As Long

Open "c:\MyRefs.txt" For Output As #1

For i = 1 To Application.References.Count
With Application.References(i)
Print #1, i & ", """ & .Name & """, """ & .FullPath & """, """ &
..Guid & """"
End With
Next

Close #1
End Function
 
Allen B.,
Overall it's not appropriate, however, just know how impressed my Mom was to tell her last AM a man in absolute opposition to me answered me for nothing and here there you are. I could never vacation, really. It is so much better than '91-'94 was; it is just astonishing. Over
 
Back
Top