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

  1. //
  2. // Module Name: AD_FCOPY.COD - Menu_Act = 18
  3. // Selectors  : File_from, File_To
  4. // Description: to issue the dBASE COPY FILE command
  5. // Syntax     : COPY FILE <expFN> TO <expFN>
  6. //
  7. lc_say='Copying file {File_from} to {File_To}'
  8. DO info_box WITH lc_say
  9. SET TALK ON
  10. //
  11. COPY FILE \
  12. {if File_from then}{File_from} TO {endif}\
  13. {if File_To then File_To}{endif}\
  14.  
  15. SET TALK OFF
  16. //
  17. // EOP AD_COPY.COD
  18.