Invoice report - original + copies

eyalco

Registered User.
Local time
Today, 14:16
Joined
Jul 24, 2007
Messages
50
I've created an invoice form which generates a report.
I've also created a form in which the user defines how many copies he wants to print with the original (with a loop to the number of copies etc).
I need to join this form to the print button in the invoice so after the user states he's willing to save, this form pops up and the user states the copies number he's interested in.
How do I do it please?
The end result I'm aimint at is the caption to change once "original" and then
"copy".
Thanks.
 
Two reports. Set caption to suit. Always print one of the original then however many copies.

Chris B
 
Thanks.
I want to print the same report with as much copies of a report (defined by user) but with diferent headers ( Original and copies). How can I do it, when in the print button on the invoice form I have a loop to the number of copies user defines?
The code I'm using on the form is :

If Forms![FRM_COPIES]![COPY] = 0 Then
Me.ORG_OR_COPY = "original"
Else
Me.ORG_OR_COPY = "copy"
End If
End Sub

Doesnt work, of course.
Thanks in advance
 

Users who are viewing this thread

Back
Top Bottom