InfoConnect for Airlines VBA Guide
FindField3 Function (UtsScreen)
The screen row at which to start searching
The screen column at which to start searching
Type of the field.
Specifies the direction to search.
Locates a field that matches the specified field attributes, starting from the specified row and column.
Syntax
object.FindField3( _
   ByVal startRow As Long, _
   ByVal startColumn As Long, _
   ByVal fieldtype As FieldType, _
   ByVal findoption As FindOption _
) As _HostField

Parameters

startRow
The screen row at which to start searching
startColumn
The screen column at which to start searching
fieldtype
Type of the field.
findoption
Specifies the direction to search.

Return Value

A host field that is found, or Nothing if it is not found.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException Thrown if the startRow or startColumn parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
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).
See Also