Outlook 2007 SP2 Not Updating Appoinment Properties
After installing SP2 i am no longer able to update the start or end
time of an appoinment item in a public folder.
The changes are lost apon the save. This appears to only affect
public folder and spicific appoinment fields, some of them will save
along with all user properties.
Does anyone know if microsoft is aware of this or if there is a
hotfix?
Thanks
Michael
Test Sub:
Sub test()
Dim AppoinmentItem As AppointmentItem
Set AppoinmentItem =
Session.Application.ActiveExplorer.Selection.Item( 1)
MsgBox "Opened Item: " & AppoinmentItem.Start
AppoinmentItem.Start = DateTime.Now
MsgBox "New Item Time: " & AppoinmentItem.Start
AppoinmentItem.End = DateTime.Now
AppoinmentItem.Save
MsgBox "Saved Item Time: " & AppoinmentItem.Start
End Sub
|