Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Hi @ersin_karacoban . You can distinguish your documents using InternalName. Example code:

Dim oDoc As AssemblyDocument = ThisDoc.Document
For Each oRefDoc As Document In oDoc.AllReferencedDocuments
	MessageBox.Show(oRefDoc.InternalName, oRefDoc.DisplayName)
Next

InternalName - a unique static name of the object that does not change, but is set when the document is created.

Andrii Humeniuk - CAD Coordinator, Autodesk Certified Instructor

LinkedIn | My free Inventor Addin | My Repositories

Did you find this reply helpful ? If so please use the Accept as Solution/Like.

EESignature