DOUBLE SIDED PRINTING

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?
 
A

Alphonse Giambrone

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top