home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a031 / template.exe / DD_COPY.COD < prev    next >
Encoding:
Text File  |  1992-03-10  |  1.1 KB  |  34 lines

  1. //
  2. // Module Name: DD_COPY.COD - currently (selector name): case8 Menu_Act
  3. // Selectors used : Copy_Recrd, Copy_type, Scope, Field_list, For_Expr, While_Exp
  4. // Description: DOC. include file for the COPY option.
  5. // Syntax     : COPY TO <new file> [<scope>] [FIELDS <field list>] 
  6. //                   [FOR <condition>] [WHILE <condition>] 
  7. //                   [[TYPE] <file type>] /
  8. //                   [DELIMITED [WITH BLANK/<delimiter>]]
  9. //
  10. Copy Records to {if Copy_type == 5}ARRAY{else}File{endif} {lower(Copy_Recrd)}
  11. {if Scope || Field_list || For_Expr || While_Exp || Copy_type then}
  12. {endofpage();}
  13. Command Options:
  14. { if Scope} SCOPE {upper(Scope)}{endif}\
  15. { if Field_list} FIELDS {Field_list}{endif}\
  16. { if For_Expr} FOR {For_Expr}{endif}\
  17. { if While_Exp} WHILE {While_Exp}{endif}
  18. { if Copy_type && Copy_type != 5 then} Type of file: {endif}\
  19. {   case Copy_type of}
  20. {   0: // DBF}
  21. {   1:}dBASEII
  22. {   2:}FW2
  23. {   3:}RPD
  24. {   4:}DELIMITED {if Appl_Delim}WITH {Appl_Delim}{endif}
  25. {   5: // ARRAY}
  26. {   6:}SDF
  27. {   7:}DIF
  28. {   8:}SYLK
  29. {   9:}WKS
  30. {   endcase}
  31. {endif // if Scope}
  32. {endofpage();}
  33. // EOP DD_COPY.COD
  34.