L le888 Registered User. Local time Today, 01:40 Joined Dec 10, 2003 Messages 344 Sep 13, 2005 #1 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
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
ghudson Registered User. Local time Today, 00:40 Joined Jun 8, 2002 Messages 6,193 Sep 13, 2005 #2 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
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
L le888 Registered User. Local time Today, 01:40 Joined Dec 10, 2003 Messages 344 Sep 13, 2005 #3 Is it possible to do a popup menu that you can select all pages, or the the pages that you want to print? Le888
Is it possible to do a popup menu that you can select all pages, or the the pages that you want to print? Le888