I have created a Access 2007 application that has a feature that will allow the user to email a report as a PDF attachment. (code below)
When I run the application on a computer with Access 2007 and Outlook 2007 installed it works perfectly.
However, I have a couple users that have Outlook 2003 and only Access 2007 Runtime. The feature fails for them.
Not sure if the issue is with using the Runtime or if it is Outlook 2003. Does anyone know why I may be having this issue?
Thanks,
John
When I run the application on a computer with Access 2007 and Outlook 2007 installed it works perfectly.
However, I have a couple users that have Outlook 2003 and only Access 2007 Runtime. The feature fails for them.
Not sure if the issue is with using the Runtime or if it is Outlook 2003. Does anyone know why I may be having this issue?
Code:
DoCmd.SendObject acSendReport, "MyReport", acFormatPDF, "", "", "", "Report: MyReport", "", True, ""
Thanks,
John