![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]() |
Ads |
#2
|
|||
|
|||
![]()
You have to first find the recurring item, then get the RecurrencePattern
object for it, then get an individual AppointmentItem occurrence by the GetOccurenceMethod, then change the Start and/or End dates to make it an Exception. Then use the Exceptions collection from the RecurrencePattern to get that particular Exception object. Here's an example from the VBA help file: Public Sub cmdExample() Dim myOlApp As Outlook.Application Dim myApptItem As Outlook.AppointmentItem Dim myRecurrPatt As Outlook.RecurrencePattern Dim myNamespace As Outlook.NameSpace Dim myFolder As Outlook.MAPIFolder Dim myItems As Outlook.Items Dim myDate As Date Dim myOddApptItem As Outlook.AppointmentItem Dim saveSubject As String Dim newDate As Date Dim myException As Outlook.Exception Set myOlApp = New Outlook.Application Set myApptItem = myOlApp.CreateItem(olAppointmentItem) myApptItem.Start = #2/2/2003 3:00:00 PM# myApptItem.End = #2/2/2003 4:00:00 PM# myApptItem.Subject = "Meet with Boss" 'Get the recurrence pattern for this appointment 'and set it so that this is a daily appointment 'that begins on 2/2/03 and ends on 2/2/04 'and save it. Set myRecurrPatt = myApptItem.GetRecurrencePattern myRecurrPatt.RecurrenceType = olRecursDaily myRecurrPatt.PatternStartDate = #2/2/2003# myRecurrPatt.PatternEndDate = #2/2/2004# myApptItem.Save 'Access the items in the Calendar folder to locate 'the master AppointmentItem for the new series. Set myNamespace = myOlApp.GetNamespace("MAPI") Set myFolder = myNamespace.GetDefaultFolder(olFolderCalendar) Set myItems = myFolder.Items Set myApptItem = myItems("Meet with Boss") 'Get the recurrence pattern for this appointment 'and obtain the occurrence for 3/12/03. myDate = #3/12/2003 3:00:00 PM# Set myRecurrPatt = myApptItem.GetRecurrencePattern Set myOddApptItem = myRecurrPatt.GetOccurrence(myDate) 'Save the existing subject. Change the subject and 'starting time for this particular appointment 'and save it. saveSubject = myOddApptItem.Subject myOddApptItem.Subject = "Meet NEW Boss" newDate = #3/12/2003 3:30:00 PM# myOddApptItem.Start = newDate myOddApptItem.Save 'Get the recurrence pattern for the master 'AppointmentItem. Access the collection of 'exceptions to the regular appointments. Set myRecurrPatt = myApptItem.GetRecurrencePattern Set myException = myRecurrPatt.Exceptions.item(1) 'Display the original date, time, and subject 'for this exception. MsgBox myException.OriginalDate & ": " & saveSubject 'Display the current date, time, and subject 'for this exception. MsgBox myException.AppointmentItem.Start & ": " & _ myException.AppointmentItem.Subject End Sub -- Eric Legault (Outlook MVP, MCDBA, MCTS: Messaging & Collaboration) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "Dikbill" wrote: Hi there, I have an VB 2005 application from which I can adjust Outlook 2003 items. My question is how can I change one of the Appointment items from the recurring set to an exception item without altering the other items? Many thnx, Dikbill, The Netherlands |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Saving exception item in recurring appointment item fails | Dikbill | Outlook and VBA | 2 | July 11th 06 03:59 PM |
Saving exception item in recurring appointment item fails | Dikbill | Outlook - Calandaring | 0 | July 11th 06 02:01 PM |
Outlook won't create the exception-objects on a recurring appointment | Akki | Outlook - General Queries | 2 | July 11th 06 09:31 AM |
Exception at item display | Yury Kudryashov | Add-ins for Outlook | 0 | March 13th 06 06:12 PM |
Outlook 2003 throws an unhandled exception when I save a new item | Engineer Rick | Outlook - Calandaring | 0 | January 30th 06 05:57 AM |