Question:
How can I check, at runtime, whether an object’s Value property is already linked?
Solution:
To do so, use a script that is similar to the one in the example below:
Dim Bind
Set Bind = Screen.Item(“Text1”).Links.Item(“Value”)
If Bind Is Nothing Then
MsgBox “Text1 not linked to any object.”
…
End If