SendObject method arguments

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Is it possible for the SendObject Method to take arguments
from an active form? If yes, then what the syntax should
be?
 
Is this what you mean

DoCmd.SendObject [objecttype][, objectname][, outputformat][, to][, cc][,
bcc][, subject][, messagetext][, editmessage][, templatefile]

e.g.
DoCmd.SendObject acSendTable, "myTable", acFormatRTF, me.ToAddress,
me.ccAddress, me.bccAddress, me.mySubject, "myInitialMessageText", True
 
Back
Top