Print a number of pages

le888

Registered User.
Local time
Today, 10:08
Joined
Dec 10, 2003
Messages
344
Hi,

Is it possible to print a report that I want choose the pages to print? Example, I want to print pages 1, 5, 6.

Le888
 
This works for printing the first two pages of a table. Modify it and try if for a report and see if that works.

Code:
  DoCmd.SelectObject acTable, tblDef.Name, True
  DoCmd.PrintOut acPages, 1, 2 'only print the first two pages
 
Is it possible to do a popup menu that you can select all pages, or the the pages that you want to print?

Le888
 

Users who are viewing this thread

Back
Top Bottom