Analysing outlook calender

D

Dave

Hi,

I've written some code that puts information from excel into an Outlook
calender item.

One idea I have is to place a unique id in one of the outlook fields
and use this as a field that I can search and locate items and see if
they have changed from the information that is in excel. e.g. if the
date has changed for example.

Is this possible and how do I go about doing it.

Thanks
David
 
D

David Lloyd

David:

One option would be to create a custom property for the calendar item to
store the unique id. The following KB article shows how to create such a
property for a contact item. You can use the same approach for a calendar
item.

http://support.microsoft.com/default.aspx?scid=kb;en-us;290658

Once the unique id property is created and assigned a value, you can
retrieve its value by either using the Find method of the UserProperties
collection, or by using the AdvancedSearch method of the Application object.
You can find more information on the AdvancedSearch method here:

http://support.microsoft.com/default.aspx?scid=kb;en-us;326244

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


Hi,

I've written some code that puts information from excel into an Outlook
calender item.

One idea I have is to place a unique id in one of the outlook fields
and use this as a field that I can search and locate items and see if
they have changed from the information that is in excel. e.g. if the
date has changed for example.

Is this possible and how do I go about doing it.

Thanks
David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top