home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: DD_SORT.COD - currently (selector name): Menu_Act = 15
- // Selectors used : Sort_File, SortField*, Sort_Ord*, Sort_Case*
- // : Scope, For_Expr, While_Exp
- // Syntax : SORT TO <new file> ON <field> [Ascending] [/C] [/D]
- // [,<field2> [/A] [/C] [/D]...]
- // [<scope>] [FOR <condition>] [WHILE <condition>]
- //
- Physically Sort DBF File
- {endofpage();}
- Command Options:
- {if Sort_File} TO File {Sort_File}{endif}
- {if SortField1 then}\
- ON Field {SortField1}{if not Sort_Ord1} Ascending{else} Descending{endif}\
- { if not Sort_Case1} Ignore Case {endif}
- {endif}
- {endofpage();}
- {if SortField2 then}\
- ON Field {SortField2}{if not Sort_Ord2} Ascending{else} Descending{endif}\
- { if not Sort_Case2} Ignore Case{endif}
- {endif}
- {endofpage();}
- {if SortField3 then}\
- ON Field {SortField3}{if not Sort_Ord3} Ascending{else} Descending{endif}\
- { if not Sort_Case3} Ignore Case{endif}
- {endif}
- {endofpage();}
- {if SortField4 then}\
- ON Field {SortField4}{if not Sort_Ord4} Ascending{else} Descending{endif}\
- { if not Sort_Case4} Ignore Case{endif}
- {endif}
- {endofpage();}
- {if SortField5 then}
- ON Field {SortField5}{if not Sort_Ord5} Ascending{else} Descending{endif}\
- { if not Sort_Case5} Ignore Case{endif}
- {endif}
- {endofpage();}
- {if Scope} SCOPE {upper(Scope)}{endif}\
- {if For_Expr} FOR {For_Expr}{endif}\
- {if While_Exp} WHILE {While_Exp}{endif}
- // EOP DD_SORT.COD
-