• search for reoccuring appointments (2000)

    Home » Forums » AskWoody support » Productivity software by function » MS Outlook and email programs » search for reoccuring appointments (2000)

    Author
    Topic
    #435103

    Is there a way to search for only reoccurring appointments in Outlook 2000? thanks

    Viewing 1 reply thread
    Author
    Replies
    • #1027465

      You can use the IsRecurring property of an AppointmentItem. Here is a simple example:

      Dim fld As MAPIFolder
      Dim itm As AppointmentItem
      Set fld = Application.GetNamespace(“MAPI”).GetDefaultFolder(olFolderCalendar)
      For Each itm In fld.Items
      If itm.IsRecurring Then
      MsgBox itm.Subject
      End If
      Next itm

    • #1027480

      From a Calendar View, in Outlook 2003 select View, Arrange By, Current View, Recurring Appointments. In Outlook 200 I think the View is still available, but the menu to get to it has changed.

    Viewing 1 reply thread
    Reply To: search for reoccuring appointments (2000)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: