views:

1041

answers:

4

I'm searching for a code that will alow access to the SMS messages stored in a Pocket PC device with Windows Mobile so I can download/backup them to a Windows PC.

Anyone knows how to do this?

+1  A: 

You might start by looking at the documentation, on how to build SMS enabled applications that expose the API's for you.

Mitchel Sellers
+1  A: 

You need to use COM, the code isn't super short, but someone has written a wrapper for it

http://www.codeproject.com/KB/mobile/PocketPCandSmartphone.aspx

http://sourceforge.net/projects/mapidotnet

Or if you have a budget http://inthehand.com/content/Mobile.aspx

Bob
A: 

Never played with it, but assembly Microsoft.WindowsMobile.PocketOutlook.dll contains classes SmsAccount and SmsMessage. Look at this documentation.

Martin Plante
A: 

Check out this namespace: Microsoft.WindowsMobile.PocketOutlook.MessageInterception

Focus on MessageInterceptor class and its MessageReceived event. MessageCondition too.

ducu