Adding events to a new item

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

Guest

When is the best time to add an event to a new created appointment item. If
you add a write event for example to a new appointment item in the
NewInspector function and then save the appointment item, when you re-open
the saved appointment item, the NewInspector function gets called again and
adds another write event to the appointment item ?
 
You don't add events to an item, they are part of that item's object model.
You choose to handle specific events for an item. Doing that has nothing to
do with NewInspector firing after opening an item, it will whether you
subscribe to NewInspector or events in Inspector.CurrentItem.
 
Back
Top