Share via


Creating a Recurring Appointment

Send Feedback

Any appointment becomes a recurring appointment when you retrieve its recurrence pattern object, set the recurrence values, and then save the Appointment. The following procedure demonstrates how to create an appointment that recurs every Monday at 2:00 P.M.

To create a recurring appointment

  1. Create an instance of the Outlook Mobile application object and then use it to establish a POOM session. For more information, see How to: Establish a POOM session.

  2. Declare and initialize a pointer to a new IAppointment interface object, as follows:

    IAppointment *pAppt = NULL;
    
  3. Create a PIM item:

    polApp->CreateItem(olAppointmentItem, (IDispatch**)&pAppt);
    
  4. Create a SYSTEMTIME object, and initialize it with a start date:

    memset(&st, 0, sizeof(SYSTEMTIME));
    st.wMonth = 7;
    st.wDay   = 26;
    st.wYear  = 2004;
    st.wHour  = 14;
    
  5. Convert the system time object to a Variant date/time object:

    polApp->SystemTimeToVariantTime(&st, &date);
    
  6. Set the appointment Start property:

    pAppt->put_Start(date);
    
  7. Set the appointment Subject property:

    pAppt->put_Subject(TEXT("Recurring Appointment"));
    
  8. Set the appointment recurrence pattern:

    pAppt->GetRecurrencePattern(&pRec);
    pRec->put_RecurrenceType(olRecursWeekly);
    pRec->put_DayOfWeekMask(olMonday);
    pRec->put_NoEndDate(VARIANT_TRUE);
    
  9. Add the recurring appointment to the appointment collection:

    pAppt->Save();
    

Code Example

The following code example demonstrates how to create a recurring appointment.

Note   To make the following code example easier to read, security checking and error handling are not included. This code example should not be used in a release configuration unless it has been modified to include them.

void CreateRecurringApt(IPOutlookApp *polApp)
{
    IAppointment *pAppt;
    IRecurrencePattern *pRec;
    SYSTEMTIME st;
    DATE date;

    // Create an appointment item.
    polApp->CreateItem(olAppointmentItem, (IDispatch**)&pAppt);

    // Set the appointment start date and time.
    memset(&st, 0, sizeof(SYSTEMTIME));
    st.wMonth = 7;
    st.wDay   = 27;
    st.wYear  = 2004;
    st.wHour  = 14;
    polApp->SystemTimeToVariantTime(&st, &date);
    pAppt->put_Start(date);

    // Set the appointment subject.
    pAppt->put_Subject(TEXT("Recurring Appointment"));

    // Set the appointment recurrence pattern.
    pAppt->GetRecurrencePattern(&pRec);
    pRec->put_RecurrenceType(olRecursWeekly);
    pRec->put_DayOfWeekMask(olMonday);
    pRec->put_NoEndDate(VARIANT_TRUE);

    // Add the recurring appointment to the appointment collection.
    pAppt->Save();

    // Free resources.
    pRec->Release();
    pAppt->Release();
}

See Also

Pocket Outlook Object Model Application Development for Windows Mobile-based DevicesIAppointment::GetRecurrencePattern | IAppointment::Save | IRecurrencePattern | IRecurrencePattern::put_DayOfWeekMask | IRecurrencePattern::put_NoEndDate | IRecurrencePattern::put_RecurrenceType

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.