0

I updated meeting item in Application_ItemSend event handler, the "sent" message shows the change; however on my calendar, the change doesn't show up. What's wrong?

PerlDev
  • 437
  • 1
  • 5
  • 15

1 Answers1

0

Why do you expect the change to show in the AppointmeentItem if you never modified it?

Have you tried to open the corresponding appointment using MeetingItem.GetAssociatedAppointment and modify it as well?

Dmitry Streblechenko
  • 62,942
  • 4
  • 53
  • 78
  • Thanks for your quick response, save the change to MeetingItem.GetAssociatedAppointment, now my own calendar has the change. – PerlDev Sep 19 '13 at 14:16
  • This is to be expected. Again, why do you expect to see the change in the appointment item in your Calendar if you never modify it? You only modify the outgoing MeetingItem object. – Dmitry Streblechenko Sep 19 '13 at 14:20
  • My purpose is to add evaluation link to the meeting invitation. When people click on it all meeting information are already there. I want to see the link myself as well. – PerlDev Sep 19 '13 at 14:23