Does anyone know how I can read the SMS on my windows mobile 6 phone? I would like to do this in C#.
I'm currently doing this with InTheHand:
foreach (InTheHand.WindowsMobile.PocketOutlook.SmsMessage mess in sess.SmsAccount.SentItems)
{
if (mess.Received.Year == thisYear && mess.Received.Month == thisMonth)
{
smsThisMonth++;
}
}
Are there any possibilities to do this with OpenNetCF?