Hi,
I am sure someone has managed this one before.
I have a report, which I call from a button on a form, which invokes the printing of 4 copies of a report. I would like to have a box on the report which prints "Office Copy" on the first page, "P.O.B." on the second pages etc.
The number of copies is set in the code on the Forms button. I have tried the following in the "On Print " Event on the report.
Me.cpi_own being the text box on the report. Am I any where near the right method of achieving this type of event.
Any help appreciated.
John S
I am sure someone has managed this one before.
I have a report, which I call from a button on a form, which invokes the printing of 4 copies of a report. I would like to have a box on the report which prints "Office Copy" on the first page, "P.O.B." on the second pages etc.
The number of copies is set in the code on the Forms button. I have tried the following in the "On Print " Event on the report.
Code:
PrintCount = 1 Me.cpi_own = "Office Copy" PrintCount = 2 Me.cpi_own = "P.O.B." etc etc
Any help appreciated.
John S
Comment