InfoConnect for Airlines VBA Guide
Xfr400OrderByString Property
Gets or sets how to sort selected records.
Syntax
Object.Xfr400OrderByString As String
Remarks

This property affects AS/400 data transfer and is only relevant for 5250 sessions. The default is "".

Use the following syntax for this string (maximum 220 characters):

[field] [sequence]

Example
This statement orders output in descending order based on the value of the PAYRATE field.
Sub OrderOutput()
    ThisIbmTerminal.FileTransfer.Xfr400OrderByString = "PAYRATE DESC"
End Sub
See Also