expression.ToString() As String
where expression is a variable that represents a HostField Object
Returns a string that includes the starting row, column, and length of the field and the text in the field.
expression.ToString() As String
Sub FindAndPrintHostFieldValue() Dim hostfieldvar As HostField Set hostfieldvar = ThisIbmScreen.FindField1(1, 1, FindOption_Forward) Debug.Print hostfieldvar.toString End Sub