Print First Page of Report Only

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is there anyway I can specifiy that when the Print Report button is clicked
that it will only print the first page of the report?

Thanks
 
Use the print out

docmd.PrintOut acPages,PageFrom,PageTo
=====================================
e.g

docmd.OpenReport "ReportName",acViewPreview
docmd.PrintOut acPages,1,1
docmd.Close acReport,"ReportName"
 
Back
Top