views:

21

answers:

1

I need to print without any option, choose the last two pages of a report and print it. I am not strong at Access development so I am not sure how to do it.

+1  A: 

You may like to consider PrintOut:

LastPage = Screen.ActiveReport.Pages
DoCmd.PrintOut acPages, LastPage-1, LastPage
Remou