How to insert a json array into a calendar events

  • Thread starter Thread starter George_Zz
  • Start date Start date
G

George_Zz

Hi, I am trying to insert a series of events into outlook calendar.
I have built a basic addin and been able to grab things from soap server.
yet I have tried few ideas to insert them into outlook calendar. none
successful. would anyone here be able to enlighten me on this?
thanks
 
What have you tried? What code have you used?

All you need to do is use CreateItem(olAppointmentItem) to create a new
appointment in the default calendar, then you set its properties.

The source of the data is not relevant, you just take whatever data you have
and use that for appointment data.
 
Back
Top