home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a079 / 1.img / FPDG.LZH / VOL2NUM0 / LETTER / LETTER.PRG < prev   
Encoding:
Text File  |  1992-08-21  |  981 b   |  29 lines

  1. ****************************************************************
  2. *     * 08/21/92               LETTER.PRG             12:27:21 *
  3. ****************************************************************
  4. *     * Author's Name: J Long                                  *
  5. *     *                                                        *
  6. *     * Description:                                           *
  7. *     *  This program illustrates how to use the textmerge     *
  8. *     *  features of FoxPro.                                   *
  9. *     *  Program outputs mail merge letter to file, Let.TXT    *
  10. ****************************************************************
  11. CLEAR
  12. m.From = "Joe Jones"
  13. *SET TEXTMERGE ON TO LET.TXT
  14. set textmerge on
  15. USE CUSTOMERS
  16. \ <<REPLICATE(" ",50)>>
  17. \\<<MDY(DATE())>>
  18. \<<Company>>
  19. \<<Address1>>
  20. \
  21. \Dear Mr. <<Company>>
  22. \
  23. \Enclosed is the information you requested.
  24. \
  25. \                   Sincerely
  26. \                   <<m.From>>
  27. \<<CHR(12)>>
  28.  
  29.