views:

130

answers:

1

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?

A: 

Here's a list of several hundred Windows Mobile samples, including some on SMS: http://msdn.microsoft.com/en-us/library/bb158662.aspx

Dave Swersky
Thank you, but I can't figure out, which example is the right for me.
druffmuff