R
Randy Harris
I'm using a For...Next loop to sequence through each of the Appointments in
the Calendar.
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderCalendar)
For I = 1 to myFolder.Items.Count
Is there any way to reliably predict the sequence in which the appointments
will be returned (such as by Start date or sequence created or whatever)?
If the program knows the Start date, I'd rather not have to search through
all of the appointments to find it.
Any help is appreciated.
the Calendar.
Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderCalendar)
For I = 1 to myFolder.Items.Count
Is there any way to reliably predict the sequence in which the appointments
will be returned (such as by Start date or sequence created or whatever)?
If the program knows the Start date, I'd rather not have to search through
all of the appointments to find it.
Any help is appreciated.