Create appointment in shared folder via VBA

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Does anybody know how to create an appointment in a
shared calander(ie. another users calander) through VBA?
I can do it manually but I would like to know how to do
it through code. I am using Exchange Server and Outlook
2003. Thanks.
 
Use the Namespace.GetSharedDefaultFolder method to return the other person's
folder, then use the MAPIFolder.Items.Add method to create an item directly
in that folder.
 
Back
Top