Script to add appointment to someone else's calendar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to use VBScript to add an appointment to someone else's Outlook
calendar. Does anyone have a sample code that can do this? Thanks in
advance!
 
Call Namespace.CreateRecipient, use the returned value to call
Namespace.GetSharedDefaultFolder(Recipient, olFolderCalendar), then use the
returned folder to call MAPIFolder.Items.Add.
Popultate the returned AppointmentItem object and save it.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Back
Top