3

I currently have some VBA code that runs through and modifies all my calendar entries. I'd like to no longer run this as a batch process.

Is there an API hook that will tell me when a calendar entry is added or modified so that I can run it against a single calendar entry on-demand rather then having to periodically run it against all entries?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
sherbang
  • 15,696
  • 1
  • 22
  • 16

1 Answers1

3

You might like to look at the application level event, ItemAdd : http://msdn.microsoft.com/en-us/library/aa155701(v=office.10).aspx#odc_ch11olevents_topic6

Fionnuala
  • 90,370
  • 7
  • 114
  • 152