Question:
How can I scan all links from an object, returning the property’s name and the source?
Solution:
The example below is a script in the server. It scans an object’s links, recording a message in a .TXT file with the names of the property and the source:
For each link in obj.links Application.Trace " Property: " & link.Property Application.Trace " Source: " & link.Source Next