Opennetcf how to read sms messagestore with c#
Posted
by druffmuff
on Stack Overflow
See other posts from Stack Overflow
or by druffmuff
Published on 2010-05-19T13:28:15Z
Indexed on
2010/05/19
13:30 UTC
Read the original article
Hit count: 286
I'm currently reading the messagestore with InTheHand, but I want to do this with OpenNetCF. Can someone post any samples?
Here is how I do this with InTheHand:
foreach (InTheHand.WindowsMobile.PocketOutlook.SmsMessage mess in sess.SmsAccount.SentItems)
{
if (mess.Received.Year == thisYear && mess.Received.Month == thisMonth)
{
smsThisMonth++;
}
}
© Stack Overflow or respective owner