Has anyone had to mail a letter or statement to each person in a database, sent the print job to the printer with tri-fold set in a finisher only to find that the printer wants to stuff every single page into the same envelope, discovers he cannot fit them in and decides not to fold any of them?
I am working on printing out the reports using a second copy of a printer driver set to fold as default and using the following code - Is there a better way to approach this?
This old world keeps spinning round - It's a wonder tall trees ain't layin' down
I am working on printing out the reports using a second copy of a printer driver set to fold as default and using the following code - Is there a better way to approach this?
Code:
**PrintOnePageAtATime vfp9
nPages = RECCOUNT( )
SET PRINTER TO NAME "WindowsPrinterName" && trifold driver
FOR n = 1 TO nPages
REPORT FORM MyReport RANGE n,n noeject TO print
ENDFOR
This old world keeps spinning round - It's a wonder tall trees ain't layin' down