Print order...

  • Thread starter Thread starter Guest
  • Start date Start date
Never satisfied, eh? <g>

Dim intPage As Integer
Dim strReport As String

strReport = "MyReport"

DoCmd.OpenReport strReport, acViewPreview
intPage = Application.Reports(strReport).Pages
DoCmd.PrintOut acPages, intPage, intPage
DoCmd.PrintOut acPages, 1, (intPage - 1)
DoCmd.Close acReport, strReport


--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)


JOM said:
With the help of Doug in my following post..... one can print my report last
page first... etc....

I would like to twist the post again as follows, print only the last page
first and the rest of the pages remain in the same order ie (For each of my
records that print)

page 3 print as 1st page
page 1 print as the second page
page 2 print as the third page
http://www.microsoft.com/office/com...-us&dg=microsoft.public.access&p=1&tid=692857
2c-fed2-41f8-90c7-20c2ef7796a4&mid=6928572c-fed2-41f8-90c7-20c2ef7796a4
 

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

Similar Threads


Back
Top