c# how to read the message store on a windows mobile device 6

Posted by druffmuff on Stack Overflow See other posts from Stack Overflow or by druffmuff
Published on 2010-05-19T17:06:06Z Indexed on 2010/05/19 17:10 UTC
Read the original article Hit count: 233

Filed under:
|

Hi,

can anyone post an example how to read the messagestore on a windows mobile device 6? I done this with "InTheHand":

foreach (InTheHand.WindowsMobile.PocketOutlook.SmsMessage mess in sess.SmsAccount.SentItems)
                {
                    if (mess.Received.Year == thisYear && mess.Received.Month == thisMonth)
                    {
                        smsThisMonth++;
                    }
                }

The problem is, that I only have a evaluation version of InTheHand. I would like to do this with OpenNetCF or mapidotnet, if possible. But I didn't figure out how to do this with OpenNetCF and mapitdotnet isn't available anymore on the sourceforge site (http://sourceforge.net/projects/mapidotnet/). I only found it on the svn directory, but there are no dlls.

© Stack Overflow or respective owner

Related posts about c#

Related posts about windows-mobile