Sending SMS to emulator

Z

Zeno Loco

I'm trying with no success to send, from a desktop application, a SMS
to the emulator.
The only example that I found is the Callevents example in the MSDN but
(maybe because it was designed for the framework 1.0 and I have
re-compiled it on 2.0) I always get the error "Missing Data Store
files".

Do you know what this error means?
Are there other ways to emulate SMS sending?

Thank you

Zeno
 
J

Jarod

Hello,

Is this for a Windows Mobile 5 project?

If so I do this and it works using
Microsoft.WindowsMobile.PocketOutlook



SmsMessage message = new SmsMessage();
message.Body = "HELLO WORLD";
message.To.Add(new Recipient("4250010001"));
message.Send();


Jarod
 
Z

Zeno Loco

Thank's Sergey,
I have just today the time to look at the article.
Very interesting and usefull, but it talks about sending a loopback SMS
from emulator.
I have not understood, still now, if is possible to emulate sending SMS
from a server desktop application to an emulator.

Have you informations about that?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top