Over 1.096.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips.
Try the new precise Engineering calculator and the updated Barcode generator.
New AutoCAD 2026 commands and variables.
CAD tip # 8661:
Question
A
To quickly display a list of files referenced from an Inventor drawing, you can use the following simple VBA macro. Insert the "RefList" macro into your Inventor VBA Editor (Tools > Options > VBA Editor) and run it with Alt+F8.
Sub RefList() Dim oDoc As Document Dim Refs As String Refs = "" Set oDoc = ThisApplication.ActiveDocument For i = 1 To oDoc.AllReferencedDocuments.Count Refs = Refs & oDoc.AllReferencedDocuments.Item(i).FullDocumentName & vbCrLf Next MsgBox Refs, vbInformation, "Reference list" End Sub
Inventor


31.5.2012
6690×
applies to: Inventor ·