Syncing Outlook calendar with SharePoint -
Syncing Outlook calendar with SharePoint -
i able sync share point calendar outlook. able drag , drop meetings share point calendar personal calendar.
however, facing issues when edit info in personal calendar. if meeting has been moved sharepoint not move meeting in share point calendar automatically. have manually delete meeting in sharepoint calendar , 1 time again drag , drop form personal calendar.
is there improve way? please advise.
thanks
it's because items(appointments) in sharepoint calendar , personal calendar different objects. after item dragndrop'd sharepoint calendar new item created. can update copied meetings outlook vb script thato fired each time , appointment changes in personal calendar.
private sub curcal_itemchange(byval item object) dim newcalfolder outlook.folder dim cappt appointmentitem dim objappointment appointmentitem dim strstart, strsubject string on error resume next set newcalfolder = getfolderpath("display name in folder list\calendar\test") strsubject = "copied: " & item.subject strstart = item.start each objappointment in newcalfolder.items if objappointment.subject = strsubject , objappointment.start = strstart set cappt = objappointment end if next cappt .subject = "copied: " & item.subject .start = item.start .duration = item.duration .location = item.location .body = item.body .save end end sub
full vb script illustration , additional functions available here
sharepoint sharepoint-2010 outlook
Comments
Post a Comment