Is it possible to suppress the "Now outputting" message box when creating PDF

NeilT123

New member
Local time
Today, 13:08
Joined
Aug 18, 2022
Messages
28
I am using DoCmd.OutputTo acOutputReport, "rptMainNPlanHeader", "PDF Format (*.pdf)",... to create PDFs, is there any way to suppress the "Now outputting" message box that flashes on the screen?
 
I am using DoCmd.OutputTo acOutputReport, "rptMainNPlanHeader", "PDF Format (*.pdf)",... to create PDFs, is there any way to suppress the "Now outputting" message box that flashes on the screen?
You need to use the SetWarnings = False before the DoCmd Line
Then use the SetWarnings = True after the DoCmd Line
 
Thank you for the suggestion but that does not work. My current understanding is that the "Now outputting" message is from windows and cannot be suppressed by code in Access.
 
I wanted to suppress this message but client (aka Hubby) liked it because since the file name had the job number in it, the message served as a status report.
 

Users who are viewing this thread

Back
Top Bottom