Source

<< Click to Display Table of Contents >>

 

Source

Text Specifies the source of a Link, which can be the name of another object from an application or a more complex expression, accessing several objects. The next script contains an example of using this property.

Sub CommandButton25_Click()
  Dim bind
  Set bind = Screen.Item("TableBind").Links.Item(1)
  bind.Source = "Data.DemoTag1.Value"
End Sub

 

NOTE

When the value of this property starts with a colon (:), this indicates that the path to an object already starts at the root, avoiding the need to resolve this path and therefore improving the performance of applications with many Links.

Was this page useful?