Hi Guys
It may be a simple solution of my problem but its driving me mad.
I am writing the following line to print a report:
but as I want to print two copies of each page so I changed my code into the following:
It will now print two copies but doesn't collate same pages while printing. e.g if there are 4 pages so it will be printed out in the following order:
page1,page2,page3,page4,page1,page2,page3,page4
But 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
It may be a simple solution of my problem but its driving me mad.
I am writing the following line to print a report:
Code:
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
Code:
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
DoCmd.OpenReport stDocName1, acViewNormal, , mysCriteria, acDialog, topLabelOnReport
page1,page2,page3,page4,page1,page2,page3,page4
But 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