|
-
Jun 17th, 2008, 09:36 PM
#1
Thread Starter
Hyperactive Member
Need to Send SMS using Mobile
Hi All,
I need to send SMS from my application through a mobile device, The mobile wants to connected with the system, and i need to give the info in the Application like SMS message, Contact No and all when i Click the send buttond in my apllication the SMS wants to send the corresponding contact number.
If you have any idea to access mobile device and send SMS through it let me have the same.......
Thanks....
-
Jun 18th, 2008, 01:02 AM
#2
Frenzied Member
Re: Need to Send SMS using Mobile
Try something like:-
Code:
Dim sms = New SMSMessage()
Dim recip As New recipient("Pete", "12345 67890")
sms.to.add(Recip)
sms.body = "This is an auto generated SMS message"
sms.requestdeliveryreport = True
sms.send()
The code above is untested
-
Jun 19th, 2008, 01:25 AM
#3
Thread Starter
Hyperactive Member
Re: Need to Send SMS using Mobile
Hi, Thanks for your replay... before to check this code tel me is there need any interface to connect the mobile with VB Application. Because i need to send the SMS from the Application by using the database contacts list and some other data through the mobile, How can i connect the device to the VbApplication.
and tel me also to save the replied SMS from the User End, i need to save the users reply SMS also. Is it possible to receive SMS through the VB Application.
If you have any idea regarding this let me have the same as detailed one...
Thanks again
-
Jun 19th, 2008, 04:20 AM
#4
Frenzied Member
Re: Need to Send SMS using Mobile
HI,
use the pocketoutlook namespace - I think that is what you are asking.
You can get contacts etc from there.
Pete
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|