K
Karen
Hi,
I would like to send a pdf attachment of a report of a current record. I
have created a report based on a form. I am able to open the report to
display the current form record. I am also able to send a report of all of
the records as a pdf email attachment. Is there a way to send the current
record only as a report?
This is the code I have which sends the entire report.
Private Sub cmdPrintCurrentRecord_Click()
Dim StrWhere As String
StrWhere = "[Issue_fk]=" & Me.issueID
DoCmd.SendObject acSendReport, "nameofreport", , "emailaddress"
I would like to send a pdf attachment of a report of a current record. I
have created a report based on a form. I am able to open the report to
display the current form record. I am also able to send a report of all of
the records as a pdf email attachment. Is there a way to send the current
record only as a report?
This is the code I have which sends the entire report.
Private Sub cmdPrintCurrentRecord_Click()
Dim StrWhere As String
StrWhere = "[Issue_fk]=" & Me.issueID
DoCmd.SendObject acSendReport, "nameofreport", , "emailaddress"