G
Guest
I have the following code (with the help of Doug)
For intPage = Application.Reports(strDocName).Pages To 1 Step -1
DoCmd.PrintOut acPages, intPage, intPage
Next intPage
DoCmd.Close acReport, strDocName
End if
What I would like to do is print the report which is 3 pages long in the
following order!
Page 1 becomes page 2 (when printed)
Page 2 becomes page 1
Page 3 becomes page 3
For intPage = Application.Reports(strDocName).Pages To 1 Step -1
DoCmd.PrintOut acPages, intPage, intPage
Next intPage
DoCmd.Close acReport, strDocName
End if
What I would like to do is print the report which is 3 pages long in the
following order!
Page 1 becomes page 2 (when printed)
Page 2 becomes page 1
Page 3 becomes page 3