|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Force each report detail to start on odd number pages
Hi,
I have a report and I want each detail record to start printing out on an odd-numbered page. The reason is that the report will be printed double-sided, and I want each detail record starting out on its own sheet of paper, rather than on the back of a previous record's page. I'm not sure how to do this - I'm already using ForceNewPage = Before Section to make sure that the detail starts on a new page, but in cases where that (new) page would be even-numbered, I need to insert a 'this page intentionally left blank' page and start up on an odd-numbered page. I'm using Access 2002 on Windows XP with all the latest patches for both. thanks in advance, -jeff |
|
#2
|
|||
|
|||
|
I got this to work as follows:
added a group footer to my report added two page breaks to the group footer added code as such to the GroupFooter0_Format subroutine: Dim viz as Boolean viz = (Me.Page Mod 2 = 1) Me!pb1.Visible = viz Me!pb2.Visible = viz Seems to work okay |
![]() |
| Viewing: Dev Articles Community Forums > Databases > Microsoft Access Development > Force each report detail to start on odd number pages |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|