home *** CD-ROM | disk | FTP | other *** search
- <*
- ENVELOPE.MRG - Sample merge print file for CONTACT database.
- ~~~~~~~~~~~~
- Merge print the customer's name and address on to a standard size 10
- business envelope.
-
- NOTE: If you are printing to a LaserJet or any other type of printer where
- the envelope needs to be fed into the printer in landscape mode, then you
- will also need to set your printer to print in this mode.
-
- >
- <# _NewLine := _LF + SPACE(35) >
- John Smith
- XYZ Company Inc.
- 101 Street Avenue
- Anywhere, Anystate
- 12345
-
-
- < TRIMLINES (
- _NewLine + TRIM( TRIM (SAL)+" "+FIRST_NAME) +" "+ LAST_NAME +
- _NewLine + TITLE +
- _NewLine + DEPARTMENT+
- _NewLine + COMPANY +
- _NewLine + ADDRESS_1 +
- _NewLine + ADDRESS_2 +
- _NewLine + TRIM (CITY)+ ", " + STATE +
- _NewLine + ZIP_CODE )
- >
-