sendObject parameters list in Access 2.0

  • Thread starter Thread starter Thomas
  • Start date Start date
T

Thomas

Hello

Could somebody please post a list of the possible
parameters to append to sendObject in Access 2.0

Thank you!

Thomas
 
You should be able to find them in Access 2.0 Help since
you still have Access 2.0.

I don't think there are many people who still have Access
2.0 installed so help yourself rather than wating for
someone. In fact, Help should be your FIRST source of
info. Only if Help doesn't help, then use other means
like Microsoft Knowledge Base, Google and these newsgroups.

HTH
Van T. Dinh
MVP (Access)
 
What's the matter: your help broken?

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

objectype = one of A_TABLE, A_QUERY, A_FORM, A_REPORT or A_MODULE
objectname = a string expression that is a valid name of an object of the
type selected above
outputformat = one of A_FORMATXLS, A_FORMATRTF or A_FORMATTXT
to = a string expression that lists the recipients to go on the To line
(separated by semicolons)
cc = a string expression that lists the recipients to go on the Cc line
(separated by semicolons)
bcc = a string expression that lists the recipients to go on the Bcc line
(separated by semicolons)
subject = a string expression containing the text you want to put on the
Subject line
messagetext = a string expression containing the text you want to include in
the body of the mail message
editmessage = True to open the electronic mail application immediately with
the message loaded so that the message can be editted

There's a bit more complexity, in terms of what happens when certain
parameters are omitted, but I'm too lazy to type it all out. <g>
 
Back
Top