0

What is the property in an AppointmentItem (MeetingStatus = olMeeting), to change the Calendar I'm using to schedule a meeting?

It is using the default account no matter what. I need to alternate between accounts configured in Outlook.

I tested these properties:

.SendUsingAccount

.Organizer
Community
  • 1
  • 1
MWsan
  • 448
  • 1
  • 8
  • 20
  • Possible duplicate of [Get reference to additional Inbox](http://stackoverflow.com/questions/9076634/get-reference-to-additional-inbox) – niton Feb 02 '16 at 23:34

2 Answers2

1

If you want to create an Outlook item in a non-default folder you need to use the Items.Add method for the Folder.Items collection in the folder where you want it created. If that folder is a default folder in a non-default account, use Store.GetDefaultFolder.

Eric Legault
  • 5,706
  • 2
  • 22
  • 38
1

The Organizer property of the AppointmentItem class is read-only. So, the only possible way is to re-create appointment in the appropriate calendar/folder.

See How To: Create a new Outlook Appointment item for possible ways.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45