Example

This procedure displays the first 10 characters of a field in row 1 that includes column 40.

Sub GetFieldTextDemo ()

 Dim text as String

 Dim size as Long

 text = Session.GetFieldText(1,40,10)

 MsgBox text,,"Field Text"

End Sub