Skip to main content

Posts

Showing posts from March, 2011

Example

OpenNETCF provide a class that will allow you access to the contants on the sim card. Below is a small example of code that you could use :- Code Snippet OpenNETCF.Phone.Sim.Sim test = new OpenNETCF.Phone.Sim.Sim(); foreach (OpenNETCF.Phone.Sim.PhonebookEntry entry in test.Phonebook) { string name = entry.Text; string phoneNumber = entry.Address; }

Getting contacts from mobile

You have to choose Windows Mobile application( install WM 5.0 SDK, or WM 6.0 SDK). If you need any information regarding Windows mobile. Here you can find use ful links , including videos. Check the link http://social.msdn.microsoft.com/Forums/en-US/microsoftdeviceemu/thread/8dc5bbff-efbc-40b0-bb62-5fd470c93223/?prof=required To retrieve the phone contacts: http://social.msdn.microsoft.com/Forums/en-US/netfxcompact/thread/b4d9989f-301f-48c7-9f50-ad1d54b7ec3b To retrieve SIM contacts: http://social.msdn.microsoft.com/forums/en-US/vssmartdevicesvbcs/thread/b9db04b7-236c-4588-b00e-ea930ad4f113/ http://msdn.microsoft.com/en-us/library/ms839358.aspx Please let me know if you have any queries regarding this.