0

I have to make a .net Windows application through which i can send sms through An android mobile connected via Usb. Is there any code or api similar to send sms Like AT Commands in Nokia Mobile. I have to send texts through phone. i.e. phone must be connected via usb while sending message.

Er Mayank
  • 1,017
  • 2
  • 16
  • 39

1 Answers1

0

well how long is a piece of string? There are many ways to do this, personally my approach would be to use TCP on VB.Net and make an android app that uses TCP as well. The VB.Net side can then push data to the android phone via the app and the app can send the sms, you could also send any incoming sms to the VB.Net app as well this way and as a bonus, you wouldnt need a cable if they are both connected to the same network (or both have external IP address's, like your home internet and the android had a 3G sim card).

bensonsearch
  • 312
  • 1
  • 8
  • I am using AT commands in Nokia mobile to send sms via vb.net code, but want to send sms using Android phone. I can not make program for android mobile, i have to make windows application. – Er Mayank Apr 17 '14 at 03:53
  • @user3542539 then i would recommend looking up on how to use the gsm modem of the android phone directly. – bensonsearch Apr 17 '14 at 04:02