I'm trying to find a way to search for an appointment using the
GlobalAppointmentID property
Tried using the find method on the calendar folder object like this:
calendarFolder.Items.Find("[GlobalAppointmentID] = 'IDSTRING'");
But that resulted in an exception ("Condition is not valid."),
probably because the GlobalAppointmentID is a binary property, and as
such cannot be used to filter items (can anyone confirm that ?).
Help and Ideas would be appreciated.
Unless you have some other distinguishing property you can use that is
supported then brute force is the only answer. You might consider storing
the binary value as a string UserProperty so you can filter on it, if it's
possible to handle the required processing.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
<jonath...@gmail.com> wrote in message
news:0c392af3-a650-48ae...@v32g2000hsa.googlegroups.com...