Good Morning
The following code (created by Access) produces a report for email and I would like the option to produce the report in PDF format.
Private Sub cmdEmailReport_Click()
On Error GoTo Err_cmdEmailReport_Click
Dim stDocName As String
stDocName = "LiveQuotes"
DoCmd.SendObject acReport, stDocName
Exit_cmdEmailReport_Click:
Exit Sub
Err_cmdEmailReport_Click:
MsgBox Err.Description
Resume Exit_cmdEmailReport_Click
End Sub
Access gives the option to produce the output in various formats such as Excel, HTML, Snapshot etc. Could you please advise if PDF can be included.
Thanks
VC
The following code (created by Access) produces a report for email and I would like the option to produce the report in PDF format.
Private Sub cmdEmailReport_Click()
On Error GoTo Err_cmdEmailReport_Click
Dim stDocName As String
stDocName = "LiveQuotes"
DoCmd.SendObject acReport, stDocName
Exit_cmdEmailReport_Click:
Exit Sub
Err_cmdEmailReport_Click:
MsgBox Err.Description
Resume Exit_cmdEmailReport_Click
End Sub
Access gives the option to produce the output in various formats such as Excel, HTML, Snapshot etc. Could you please advise if PDF can be included.
Thanks
VC