: : : Hi All,Im new to our site..Im delightful to join you all...
: : Welcome!
: :
: : : can any
: : : one help me to send sms to mobile from C# application?...Thank you
: : : in advance..
: : :
: : A Google search for C# SMS looks to be pretty informative and
: : provide plenty of times - the CodeProject article is probably worth
: : a look.
: :
http://www.google.co.uk/search?q=c%23+sms
: :
: : Jonathan
: : ###
: : for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&&
: : (tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;
: : /(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");
:
: Hi
:
: Sending an SMS should be easy. The only thing that you must look at
: is the AT-Command of the modem you are using. If your modem has a
: serial port, then your task is very easy.
:
: All you do is send the AT-Commands via the serialport component in
: your C# application. So your first step is to find information on
: how to use the serialport component in your C#. All you do is drag
: the component to your form and open the serialport. Then you can
: send the commands via serialport.
:
: I think most modems have this command:
: AT+CMGS = "+277777777"
:
: where +277777777 is the cell number. But you must send the command
: to covert the SMS to text, otherwise you will get funny characters.
: Check SMS commands in your modem datasheet.
:
: loco
:
:
:
Hi,Thank You for your help..Im very new to this application..can you help me by giving sample code...Thank You..