I have a database that I would like to print out 2 seperate documents, which I have done and I also want to e-mail the same 2 documents. I am using the SendObject function, but I can't seem to get the 2 documents to attach, is this even possible? If so, what am I missing?
Thank you again
Code:
DoCmd.OpenReport "rptCommunication"
DoCmd.OpenReport "rptCommunicationCoverSheet"
DoCmd.SendObject acSendReport, "rptCommunicationCoverSheet" also "rptCommunication", "Rich Text Format", , , , "IDP - Communication for the month of" + " " + [Month]
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.GoToRecord , , acNewRec
DoCmd.Close
Comment