InfoConnect for Airlines VBA Guide
ReadUntil3 Function
Specifies one or more terminator characters. Any one of these characters can terminate the read operation.
The time (in seconds) to wait for a terminator character. The range of valid values is 0 through 99.
Additional read options.
The specific terminator character that terminated the read.
Reads data from the host until one of the specified terminator characters is received. The terminator character is not included in the returned string.
Syntax
object.ReadUntil3( _
   ByVal terminatorChars As String, _
   ByVal timeout As Long, _
   ByVal option As ReadOption, _
   ByRef whichEndChar As String _
) As String

Parameters

terminatorChars
Specifies one or more terminator characters. Any one of these characters can terminate the read operation.
timeout
The time (in seconds) to wait for a terminator character. The range of valid values is 0 through 99.
option
Additional read options.
whichEndChar
The specific terminator character that terminated the read.

Return Value

The string of data that was read from the host.
See Also