Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.IbmHosts Library / Attachmate.Reflection.Objects.Emulation.IbmHosts Library / FileTransfer Object / Xfr400OrderByString Property
Example
In This Topic
    Xfr400OrderByString Property
    In This Topic
    Gets or sets how to sort selected records.
    Syntax
    expression.Xfr400OrderByString As String
    where expression is a variable that represents a FileTransfer Object
    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