This is what I thought but it doesn't seem to be happening
within my DB for some reason. Here's some sample code that
does not produce an error:
On Error GoTo err_cmdSend
DoCmd.SendObject acSendNoObject, , , , , , "Test
Subject"
exit_cmdSend:
Exit Sub
err_cmdSend:
MsgBox Err.Description, , Err.Number
Resume Next
I have tried it with and without the error handling and
have also entered docmd.setwarnings=true before the
sendobject reference.