New record on even page

  • Thread starter Thread starter Clementius
  • Start date Start date
C

Clementius

Hi,
I use Access 2002. How can I format a report so that each record starts on
an odd page? I would like to print duplex with the option to separate
records. This requires an even number of pages for each record. The amount
of information to print for each record depends on the record. Thanks for
your input. C.
 
Clementius said:
I use Access 2002. How can I format a report so that each record starts on
an odd page? I would like to print duplex with the option to separate
records. This requires an even number of pages for each record. The amount
of information to print for each record depends on the record. Thanks for
your input. C.


Place a PageBreak control named pgEject at the top of the
detail section. Then use code in the Format event to make
it visible or not as needed.

Me.pgEject.Visible = (Me.Page Mod 2 = 0)
 
Thanks a lot Marsh. It works well. C

Marshall Barton said:
Place a PageBreak control named pgEject at the top of the
detail section. Then use code in the Format event to make
it visible or not as needed.

Me.pgEject.Visible = (Me.Page Mod 2 = 0)
 
Back
Top