InfoConnect for Airlines VBA Guide
WaitForText1 Function (IbmScreen)
Wait timeout value in milliseconds.
Text string.
Row position.
Column position.
Text comparison option.
Waits for the specified text to appear at the specified screen location. TextComparisonOption indicates desired text string comparison.
Syntax
object.WaitForText1( _
   ByVal timeout As Long, _
   ByVal text As String, _
   ByVal row As Long, _
   ByVal column As Long, _
   ByVal options As TextComparisonOption _
) As ReturnCode

Parameters

timeout
Wait timeout value in milliseconds.
text
Text string.
row
Row position.
column
Column position.
options
Text comparison option.

Return Value

One of the ReturnCode enum values
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException This exception is thrown if the row or column parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
See Also