C
channell
Is there a way I can take this code, but insert another report in as well so
both reports are attachments in 1 email? Thanks a ton, and I appreciate your
help in advance!
The one report I have in here working already is "r6135EMAIL2". I also want
to put in another report called "r6135FOREMAIL".
Private Sub Command49_Click()
On Error GoTo Err_Command49_Click
Dim stDocName As String
stDocName = "r6135EMAIL2"
DoCmd.SendObject acReport, stDocName
Exit_Command49_Click:
Exit Sub
Err_Command49_Click:
MsgBox Err.Description
Resume Exit_Command49_Click
End Sub
both reports are attachments in 1 email? Thanks a ton, and I appreciate your
help in advance!
The one report I have in here working already is "r6135EMAIL2". I also want
to put in another report called "r6135FOREMAIL".
Private Sub Command49_Click()
On Error GoTo Err_Command49_Click
Dim stDocName As String
stDocName = "r6135EMAIL2"
DoCmd.SendObject acReport, stDocName
Exit_Command49_Click:
Exit Sub
Err_Command49_Click:
MsgBox Err.Description
Resume Exit_Command49_Click
End Sub