Determining result of SendObject

  • Thread starter Thread starter S Price
  • Start date Start date
S

S Price

Is there a way to find out if the user has sent an email,
or cancelled, when a sendobject event occurs?

Thanks
 
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.
 
Back
Top