Example

The following example shows how to send a string of characters to the field.

' Create a new PS object associated with connection A
dim myPSObj as new lsxECLPS("A")
 
 ' Refresh the list of fields
myPSObj.lsxECLFieldList.Refresh
If (myPSObj.lsxECLFieldList.Count) Then
' Send a string of characters to the first field
  myPSObj.lsxECLFieldList(1).SetText("This is a test")
Endif