DOUBLE SIDED PRINTING

  • Thread starter Thread starter BRENNON
  • Start date Start date
B

BRENNON

I have a printer/copier that will print documents on
double sided paper. I would like my access report to
keep sections so that each prints on one piece of paper -
I would always like the section to start on and odd
number sheet.

For example, if a section of the report is one page long,
it would print a blank sheet to follow and the next
section would be on the front side of the printed piece
of paper.

ANY THOUGHTS?
 
Place a page break control at the end of the group footer section.
In the format event of the group footer, check if the current page (Me.Page)
is an odd number.
If it is, set the visible property of the page break
control to true, otherwise set it to false.

If Me.Page Mod 2 <> 0 Then
Me.myPageBreak.Visible = True
End If

The idea being that if the last section ended on an odd page the next would
have started on an even page and you want it to start on an odd page.
 
Back
Top