I have some code below that exports a report to PDF.
It works fine, I just want to know if it's possible to export the PDF without saving it? I can't seem to find anything on my search about it.
It works fine, I just want to know if it's possible to export the PDF without saving it? I can't seem to find anything on my search about it.
Code:
'Open Report From Query
DoCmd.OpenReport "rpt_BLT_PrintReport", acViewPreview, Me.Filter
'Output Form to PDF
Dim strUserName As String, strPath As String
strUserName = Environ("username")
strPath = "C:\Users\" & strUserName & "\Documents\PoliceReport.pdf"
DoCmd.OutputTo acOutputReport, "rpt_BLT_PrintReport", acFormatPDF, strPath, True
'Close Report
DoCmd.Close acReport, "rpt_BLT_PrintReport"