I want to print a report using on both sides of the paper. How can I get Access to skip to the next sheet of paper (not page) when there is a control break?
What you want to do is to use a page control and then via code set its
visible property to true or false based on whether you are on an odd or even
page to force a page break and skipped page. You can use the MOD function
(me.page mod 1) to determine if you are on an odd or even page.
--
Steve Arbaugh
ACG Soft http://ourworld.compuserve.com/homepages/attac-cg
Hector said:
I want to print a report using on both sides of the paper. How can I get