i have 2 autoCAD drawings 'a.dwg' and b.dwg'. b.dwg is an xref in a.dwg. I am able to access to the block and get the reference name (say 'xref1'). but I want to get the path of the externally referenced drawing. Dim tempBlock As AcadBlock For Each tempBlock In doc.Blocks If tempBlock.IsXRef Then MsgBox tempBlock.Name End If Next I am able to get the name of the external reference but I want to get the dwg file also (b.dwg). please Suggest. Regards, Debanjan