Print Multiple Records

venu_resoju

Registered User.
Local time
Today, 20:56
Joined
Dec 29, 2010
Messages
130
Hai all of you..

I am trying to create a "Print button" to print 4 copies of the same report by one click with different page lables, like "Original", "Duplicate", "Triplicate" and "Quatriplicate".

is it possible...?, If it is possible anybody please tell me some ideas.

Thank you in advance
 
Use the OpenArgs parameter when calling your report:

Code:
DoCmd.OpenReport "myReport", , , , , "Original"
DoCmd.OpenReport "myReport", , , , , "Duplicate"
DoCmd.OpenReport "myReport", , , , , "Triplicate"
DoCmd.OpenReport "myReport", , , , , "Quatriplicate"

And in your report you need a text box with the Control Source set to:
=[Reports]![myReport].[OpenArgs]

hth
Chris
 
Thank you Mr.Stopher....
I got it...thanks a lot...
 

Users who are viewing this thread

Back
Top Bottom