I am writing the following line to print a report:
but as I want to print two copies of each page that are printed out so I have changed the code into the following:
Basically I had written one line twice to print two copies. It is now printing two copies but e.g there are 4 pages so it will be printed out in the following order:
page1,page2,page3,page4,page1,page2,page3,page4
so it is difficult to combine same pages together if there are about suppose 100 pages in total of that report . I want it to print in the following format:
page1,page1,page2,page2,page3,page3,page4,page4.....
Can anyone please tell me hows it possible.
Thanks
Aman
Code:
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
but as I want to print two copies of each page that are printed out so I have changed the code into the following:
Code:
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
Basically I had written one line twice to print two copies. It is now printing two copies but e.g there are 4 pages so it will be printed out in the following order:
page1,page2,page3,page4,page1,page2,page3,page4
so it is difficult to combine same pages together if there are about suppose 100 pages in total of that report . I want it to print in the following format:
page1,page1,page2,page2,page3,page3,page4,page4.....
Can anyone please tell me hows it possible.
Thanks
Aman
Last edited: