2

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?

InfoStatus
  • 6,983
  • 9
  • 41
  • 53

4 Answers4

1

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

Mitchel Sellers
  • 62,228
  • 14
  • 110
  • 173
1

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
  • 97,670
  • 29
  • 122
  • 130
0

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

Martin Plante
  • 4,553
  • 3
  • 33
  • 45
0

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

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

ducu
  • 1,199
  • 2
  • 12
  • 14