View Single Post
  #1  
Old May 26th 09, 06:35 PM posted to microsoft.public.outlook.program_vba
MichaelR
external usenet poster
 
Posts: 1
Default Appoinments Not Updating after Outlook 2007 SP2

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
Ads