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

  • Thread starter Thread starter cfkniess
  • Start date Start date
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?
 
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
 
Back
Top