Email Multiple reports in same message

B

broncojim

Anyone know how to modify the following code to email 3 reports in to the
same person in the same email?

Private Sub Command132_Click()
On Error GoTo Err_Command132_Click

Dim stDocName As String

stDocName = "Transformer Missing Bill of Lading"
DoCmd.SendObject acReport, stDocName

Exit_Command132_Click:
Exit Sub

Err_Command132_Click:
MsgBox Err.Description
Resume Exit_Command132_Click

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top