How outlook Store Appointment

A

Amit

When we create any appoointment . then how outlook store that appointment.
Means how outlook identify the appointment uniquely.

means outlook assign any ID or any thing else to an appointment

how we can access that ID through programming.


thanks & regards.
K amit
 
K

Ken Slovak - [MVP - Outlook]

You need to supply some actual information, such as the Outlook version and
what language and development platform you intend to use.

In general, any Outlook item is assigned a GUID referred to as the EntryID
when the item is saved. You use that with NameSpace.GetItemFromID() to
retrieve the item, optionally with the StoreID that uniquely identifies the
store the item is in.

For appointments there is also a unique GlobalAppointmentID for Outlook 2003
and later that can be used, but it's not exposed in the Outlook object model
directly except in Outlook 2007. For an earlier version of Outlook you would
need to use a lower level API to get at that field.
 

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