Hello Everyone,
I am trying to get all contacts that are present on my Windows MObile phone and ON SIM Card.
By writing following simple code, I got all the contacts from my Windows Mobile Phone native address book.
ContactCollection contactCollection = null;
Contact contact = null;
OutlookSession outlookSession = null;
outlookSession = new OutlookSession();
contactCollection = outlookSession.Contacts.Items;
But this contactCollection does not include contacts that are stored on SIM Card.
If anybody knows how to access contacts stored on SIM card or any work around the please reply ASAP.
Thanks and regard
RaJ

How to have access to contacts saved on SIM card.
Spuddo
Hi RaJ
You'll have to use the native SIM Manager API (docs see here)
And the MSDn Article 'SIM Programming with the .NET Compact Framework' shows how to use this from managed code.
Hope this helps
Michael