home *** CD-ROM | disk | FTP | other *** search
- ****************************************************************
- * * 08/21/92 LETTER.PRG 12:27:21 *
- ****************************************************************
- * * Author's Name: J Long *
- * * *
- * * Description: *
- * * This program illustrates how to use the textmerge *
- * * features of FoxPro. *
- * * Program outputs mail merge letter to file, Let.TXT *
- ****************************************************************
- CLEAR
- m.From = "Joe Jones"
- *SET TEXTMERGE ON TO LET.TXT
- set textmerge on
- USE CUSTOMERS
- \ <<REPLICATE(" ",50)>>
- \\<<MDY(DATE())>>
- \<<Company>>
- \<<Address1>>
- \
- \Dear Mr. <<Company>>
- \
- \Enclosed is the information you requested.
- \
- \ Sincerely
- \ <<m.From>>
- \<<CHR(12)>>
-
-