views:

26

answers:

1

I need to set Callback function for New Contact added to Device on Windows Mobile.

I want to get notification when someone adds contacts to mobile device. I am using VS 2008 with C#.

A: 

The Microsoft.WindowsMobile.PocketOutlook.ContactCollection has a ListChanged event. Is that what you're after?

EDIT

I think what you want is available in this library I published a couple years back.

ctacke
No. That will be called only when Contact is added programatically. I want to get notification even if Contact is added directly in Outlook (from device) outside of my application. I have found one useful link (http://msdn.microsoft.com/en-us/library/ms862902.aspx) but that is in unmanaged code. I don't know how to use it in C#. Can you help me to call it from C#? Kind of creating wrapper?
Sunil Sharma
Take a look at my edit.
ctacke