Printing two copies of a report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to extend a line of VBA to print two copies of a report - the code first includes a where conditio

DoCmd.OpenReport stDocName, acViewPreview, , "JobCode=Forms!tblJob!JobCode" ... and this works fine, the report opens on the correct job code. The next step is to get two copies of the report output - I can't do this; any ideas?

Eddie
 
Check out docmd.printout

HTH
Sam

Eddie said:
I am trying to extend a line of VBA to print two copies of a report - the
code first includes a where condition
DoCmd.OpenReport stDocName, acViewPreview, ,
"JobCode=Forms!tblJob!JobCode" ... and this works fine, the report opens on
the correct job code. The next step is to get two copies of the report
output - I can't do this; any ideas??
 
Back
Top