Results 1 to 4 of 4

Thread: Need to Send SMS using Mobile

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2008
    Posts
    268

    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....

  2. #2
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2008
    Posts
    268

    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

  4. #4
    Frenzied Member
    Join Date
    Oct 2005
    Posts
    1,286

    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
    Pete Vickers
    MVP - Device Application Development
    http://www.gui-innovations.com http://mobileworld.appamundi.com/blogs/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width