I'm building a report using a temp table to hold the data. The report looks great. The problem comes when the user tries to print and even though the report is selected and on top of the control form, the form is printed and not the report.
Could the problem be in my code?
Can I tell the form to lose focus?
Alan
Could the problem be in my code?
Code:
DoCmd.OpenReport "rptScrapReport", acViewPreview
DoCmd.SelectObject acReport, "rptScrapReport"
Can I tell the form to lose focus?
Alan