InfoConnect for Airlines VBA Guide
HostRecordSeparator Property
Returns or specifies the character to use as a record separator in the PC file when an ASCII files is transferred from the host.
Syntax
Object.HostRecordSeparator As String
Remarks
For example, this statement specifies a linefeed as the record separator:

FileTransfer.HostRecordSeparator = "\n"

This property only applies to ASCII file transfers using the WRQ/Reflection protocol.

The default value is a carriage return and linefeed, which is represented as:

"\r\n"

This property is only relevant when the UseHostRecordSeparator property is true. The string cannot be more than 259 characters long.
See Also