can you schedule meetings in Outlook 2007 using MS Access 2007?

C

cfkniess

I know you can send reports, etc. through MS outlook from MS Access, but is
there a way to have it send meeting requests, or schedule appointments?
 
D

David C. Holley

Yes using Outlook Automation. Start by locating code that creates an Outlook
MailItem (email). Get that code up and running. Then adapt the code to
create a MeetingItem object instead. The same applies to other Outlook items
such as AppointmentItems, PostItems and ContactItem.

The full documentation on the MeetingItem object is here with some examples.

http://msdn.microsoft.com/en-us/library/aa210951(office.11).aspx
 
Top