Mikal613,
Thanks for the post. I did try the quotes but I still get the same result "Hello" ----> "@He@l@l@o@"
Main Topics
Browse All TopicsRecently picked up a Motorola Q 9c with Windows Mobile 6 and I decided to write a small application to send stored SMS messages through Pocket Outlook. I am developing in vs2005, Vb.Net and I have installed the Windows Mobile 6 Professional SDK and the Net CF Framework 2.0.2. The problem I have is that when I send a message, for example "Hello", the recipient receives "@H@e@l@l@o@. How can I correct this? I have attached the code I use to send an SMS message. Put max points because this is annoying and I would like to get this resolved quickly. Thanks in advance for your help.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hey,
I think your problem is your character encoding. I just found a very good artickle on the web about someone else that has done something similar as you. I have not tried this my self, but you try it, and give me a msg about how it is going :-) :
http://www.devx.com/wirele
Well, I took back the phone last week and got another smart phone with Windows Mobile 5 and the code works fine. I'm not sure if it is a Windows Mobile 6 OS problem or what. Anyways, I am not sure what the protocol is here but I want to split the points between you both for trying to help me out.
Mikal613: Thank you for the rapid responses. The code you posted does work with the new phone.
kjetilroe: Thank you for your response but I am not sure if it was an encoding problem. As far as my understanding goes the SMSMessage class from the windows.mobile.pocketoutlo
Business Accounts
Answer for Membership
by: Mikal613Posted on 2008-01-15 at 10:43:29ID: 20665177
im SMS as New SmsMessage
Dim body as String = "Hello"
'Body of the message
SMS.Body = body
'Recipient
SMS.To.Add(New Recipient("123-456-7890"))
'Send the Text Message
SMS.Send()
End Sub