0

In Outlook 2010 I want to change certain properties in an appointment depending on what identifier is written in the subject line. This works nice as long as I change the appointment in Outlook and use the _changeitem event.

Public WithEvents myOlItems As Outlook.Items
...
Private Sub myOlItems_ItemChange(ByVal Item As Object)
...

But now when an appointment is added on e.g. a phone and then being synced to Outlook from the Exchange Server I would need to do the same but the "_ItemChange" event doesn't fire. My searches into the MS documentation weren't really successful.

Does anyone have some idea how to catch a newly from Exchange synced item (appointment) so some properties can be adjusted programmatically?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
aaron
  • 130
  • 1
  • 5

1 Answers1

0

Okay, as it turns out, the _ItemAdd Event is fired. That will do.

aaron
  • 130
  • 1
  • 5