Reputation: 7113
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?
Upvotes: 2
Views: 2027
Reputation: 1219
Check out this namespace: Microsoft.WindowsMobile.PocketOutlook.MessageInterception
Focus on MessageInterceptor class and its MessageReceived event. MessageCondition too.
Upvotes: 0
Reputation: 4703
Never played with it, but assembly Microsoft.WindowsMobile.PocketOutlook.dll contains classes SmsAccount and SmsMessage. Look at this documentation.
Upvotes: 0
Reputation: 99814
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
Upvotes: 1
Reputation: 63136
You might start by looking at the documentation, on how to build SMS enabled applications that expose the API's for you.
Upvotes: 1