c#, how to update POOM appointment?

  • Thread starter Thread starter None
  • Start date Start date
N

None

hi there,

i am developing a ppc application using c# 2005 and cf 2.0. what i
want to do is populating a datagrid with some appointments from
appointment collection, and let user select an appointment to edit. i
was able to populate the datagrid and at that point i was stuck.

how can i locate the selected appointment in appointment collection
for editing? is there any unique key to uniquely identify an
appointment in the collection? or am i having an incorrect concept?
please help and let me know if there is any articles or sample coding
that i can reference. thanks.

batterheadccw
 
Take a look a the Microsoft.WindowsMobile.PocketOutlook.Appointment class.
This should give you everything you need. The Appointment class inherits
from the PimItem class. The PimItem class contains an ItemId that uniquely
identifies the item.

Rick D.
Contractor
 
Back
Top