InfoConnect for Unisys VBA Guide
FindField1 Function (UtsScreen)
Screen row at which to begin searching
Screen column at which to begin searching
Find direction that specifies the direction to search.
Locates a field starting from the specified row and column.
Syntax
object.FindField1( _
   ByVal startRow As Long, _
   ByVal startColumn As Long, _
   ByVal findoption As FindOption _
) As _HostField

Parameters

startRow
Screen row at which to begin searching
startColumn
Screen column at which to begin searching
findoption
Find direction that specifies the direction to search.

Return Value

A host field that is found, or Nothing if it is not found.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException This exception is thrown if the startRow or startColumn parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
Remarks
findoption specifies the direction to search. A search can go up or down the host screen. The method returns the host field if it finds one or Nothing if not.
See Also