Hey all, I'm trying to do the following while evaluating this software:
OutlookSession session = new OutlookSession();
foreach (SmsMessage msg in session.SmsAccount.Inbox)
{
txtLog.Text += msg.Body + "\n";
}
But it doesn't seem to be working for me at all. I am not getting any messages returned. When I run this on the emulator it works great, but on my personal phone it does not.
I am using a Palm treo 750w, with Windows mobile 6, and ATT as my service (I believe ATT has a custom messaging application, so it may be possibly be part of the issue) does anyone have any ideas or suggestions for this?
Thanks!
Tom