- Make a regular button and create an "On Click" event procedure and copy this code for it.
Private Sub btn_PDFExport_Click()
On Error GoTo EndEarly
DoCmd.OutputTo acOutputReport, Me.Name, "*.pdf", "Order Status Report.pdf", True, , , acExportQualityPrint
EndEarly:
Resume Next
End Sub...