Specify no. of copy to print

A

Ashley

I have users enter PN as parameter to print a label.
I know there a macro that I can predetermine the number of
copy. Or go to File/Print and put the no. of copy.
But I rather have the user to specify the number maybe as
a parameter.Is there a way like VB or macro that can do
this?

Thanks
Ashley
 
I

ihatepaperwork

Hi Ashley,

You could have the user input the number of copies and then use the printout
command.

Example:

Dim X As Integer
X = InputBox("Enter how many copies to print")
DoCmd.PrintOut , , , , X

Hope this helps.
Jen.
 
Top