home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: DD_COPY.COD - currently (selector name): case8 Menu_Act
- // Selectors used : Copy_Recrd, Copy_type, Scope, Field_list, For_Expr, While_Exp
- // Description: DOC. include file for the COPY option.
- // Syntax : COPY TO <new file> [<scope>] [FIELDS <field list>]
- // [FOR <condition>] [WHILE <condition>]
- // [[TYPE] <file type>] /
- // [DELIMITED [WITH BLANK/<delimiter>]]
- //
- Copy Records to {if Copy_type == 5}ARRAY{else}File{endif} {lower(Copy_Recrd)}
- {if Scope || Field_list || For_Expr || While_Exp || Copy_type then}
- {endofpage();}
- Command Options:
- { if Scope} SCOPE {upper(Scope)}{endif}\
- { if Field_list} FIELDS {Field_list}{endif}\
- { if For_Expr} FOR {For_Expr}{endif}\
- { if While_Exp} WHILE {While_Exp}{endif}
- { if Copy_type && Copy_type != 5 then} Type of file: {endif}\
- { case Copy_type of}
- { 0: // DBF}
- { 1:}dBASEII
- { 2:}FW2
- { 3:}RPD
- { 4:}DELIMITED {if Appl_Delim}WITH {Appl_Delim}{endif}
- { 5: // ARRAY}
- { 6:}SDF
- { 7:}DIF
- { 8:}SYLK
- { 9:}WKS
- { endcase}
- {endif // if Scope}
- {endofpage();}
- // EOP DD_COPY.COD
-