Hi,
I've got a windows mobile 2003SE PPC and i'm trying to use InTheHand.WindowsMobile.PocketOutlook to send sms.
using :
SmsMessage sms;
sms=new SmsMessage();
sms.Body = "test d'envoi de sms";
sms.To.Add(new Recipient("00000000"));
sms.Send();
But on the second line I've got a "NullReferenceException" (on new SmsMessage). I tried an other code to get my mail :
OutlookSession session = new OutlookSession();
foreach (SmsMessage msg in session.SmsAccount.Inbox)
{
MessageBox.Show(msg.Body);
}
But then I've got a NullReferenceException on session.SmsAccount.
Isn't Windows mobile 2003 sufficient to use this DLL ? Is there a solution to my problem ?
Thanks in advance
Paul