Monday, January 3, 2011

How to send SMS from VB 6.0 via Internet


RAM RAM Friends

At last I got time to write one of important topic here.
How to send SMS from VB6.0 via Internet

When I got this work to implement in our project, first I got very excited but when I tried to search this topic on Internet via Google etc, I had to struggle a lot to find the correct method.

Well We can send SMS from VB6.0 by two ways
  1. By using Internet (this method is explained Here )
  2. By Using Mobile Phone (Not explained here)


After long time, I finally got chance to provide download link to demo project which is below
The downloaded file is rar compressed. In case you don't have software to extract it, just download wrar320 or higher version free of cost from the internet via Google etc.
Please note: You need some valid Developer API.
Please either contact company or create an demo account to get developer API from the site, I had mentioned Below.

click here to Download SMS Demo project Setup without code 2.67mb

Here I would try to explain HOW TO SEND SMS FROM VB via INTERNET

  1. The very first thing is that U need to contact to any SMS Providers (e.g. in India some are
    1. http://www.mysmsmantra.com/
    2. http://www.smscountry.com/ (click on Register now button at top)
    3. http://www.freesmsapi.com/ (click on Sign Up button at top)
    4. http://mirchsms.com/bulk_sms.html (please contact at no. provided at top or email at bottom to request to get trial sms api ). I also tested it very well, you may also refer my name to them.)
  2. Now get the Developer API from these SMS Providers either by purchasing account or if you want to test before purchasing then you can ask these SMS Providers to provide you a free trial account so that you can test their service) 
    1. Below is one of the example of Developer API
    2. 'http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=demouser&password=399501089&sendername=DM&mobileno=919999999999&message=Hello"
  3. Now just use the following code in your VB program to send SMS
    1. Dim WinHttpReq As Object
    2. Dim sResult As String, strURL As String
    3. Set WinHttpReq = CreateObject("Msxml2.XMLHTTP")
    4. strURL="http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=demouser&password=399501089&sendername=DM&mobileno=919999999999&message=Hello"
    5. 'Replace the Message & MobileNo with the no to whom you want to send SMS
    6. With WinHttpReq
    7.       .Open "GET", strURL, False
    8.     .Send
    9.     sResult = .responseText
    10.  End With
    11. MsgBox "Status of Sent SMS  is=" & sResult
  4. Some Important notes We should keep in mind while Sending SMS
    1. Check the Maximum Message Length that you can send as allowed by your SMS Service Providers
    2. Check whether you have to make your Message encode according to WWW standards, confirm it from your SMS Providers
    3. While sending data over internet/network, some letters can not be sent as it is, they need to be converted to send them to internet. e.g " &"  can not be send as it, it needs to be converted to send it over internet.
      1. URL encoding converts characters into a format that can be transmitted over the Internet.
      2. For more information see following link
        1. http://www.w3schools.com/html/html_urlencode.asp
    4. Always Allow the access of your program to get connected with Internet which would be asked by the Firewall of your OS or Antivirus program else you could not send SMS 
    5. As sending SMS may take time, you should do appropriate changes in your program to show user that your program is busy in sending SMS like change Mouse Pointer Shape from normal to HourGlass & after sending make it normal.

After long time, I finally got chance to provide download link to demo project which is below
The downloaded file is rar compressed. In case you don't have software to extract it, just download wrar320 or higher version free of cost from the internet via Google etc.
Please note: You need some valid Developer API.
Please either contact company or create an demo account to get developer API from the site, I had mentioned above.


Below is a sample which I used in my project 






Private Sub cmdSMSTest_Click()
    'validate information
  'Message(max 160 Chars)


    Me.MousePointer = 11 'Hourglass
    Call SendMySMS(myMob, myMsg, True, Trim(Me.txtSMSDeveloperAPI),  Trim(Me.txtSMSMobileText), Trim(Me.txtSMSMsgText))
    Me.MousePointer = 0 'Default


End Sub


Public Function SendMySMS(ByVal myMob As String, ByVal myMsg As String, Optional ByVal IsTest As Boolean = False, Optional ByVal UserDeveloperAPI As String = "", Optional ByVal MobText As String = "", Optional ByVal MsgText As String = "", Optional ByVal AskToSend As Boolean = True, Optional ByVal ShowStatus As Boolean = True) As Boolean


'Here you write your code

Following is the sample code to test it--- but of course you need Developer API to use the code


Private Sub cmdSMSTest_Click()
    'validate information
    'Message(max 160 Chars)
    If Me.chkSMSActivateService.Value = 0 Or Len(Me.txtSMSDeveloperAPI) < 1 Or Len(Me.txtSMSMobileText) < 1 Or Len(Me.txtSMSMessageText) < 1 Then
        MsgBox "Please enter all setting values"
        Me.txtSMSDeveloperAPI.SetFocus
        Exit Sub
    End If
 
 
    Dim s As String
    Dim myMob As String
    Dim myMsg As String
 
    s = "Enter Mobile nos separated by , then put @ now write your msg not more than 160 chars"
    s = s & vbCrLf & "e.g 9971745868,9811994797@Hi this is test sms by ABM Infotech"
    s = InputBox(s, , "9971745868,9811360935@Hi this is test sms by ABM Infotech")
    myMsg = Mid(s, InStr(1, s, "@", vbTextCompare) + 1)
    If Len(myMsg) > 155 Then
        myMsg = Left$(myMsg, 155)
    End If
    myMob = Mid(s, 1, InStr(1, s, "@", vbTextCompare) - 1)
 
    Me.MousePointer = 11 'Hourglass
    Call SendMySMS(myMob, myMsg, True, Trim(Me.txtSMSDeveloperAPI), Trim(Me.txtSMSMobileText), Trim(Me.txtSMSMessageText))
    Me.MousePointer = 0 'Default

End Sub

Public Sub SendMySMS(ByVal myMob As String, ByVal myMsg As String, Optional ByVal IsTest As Boolean = False, Optional ByVal UserDeveloperAPI As String = "", Optional ByVal MobText As String = "", Optional ByVal MsgText As String = "", Optional ByVal AskToSend As Boolean = True, Optional ByVal ShowStatus As Boolean = True)
    'myMob,myMsg, Optional IsTest,UserDeveloperAPI , MobText, MsgText,AskToSend ,ShowStatus As Boolean = True
    On Error GoTo ArunKakkarErr
 
    Dim sMobText1 As String
    Dim sMobText2() As String
    Dim sMobText3() As String
 
    Dim sResult As String, strURL As String
    strURL = ""
 
    If IsTest Then
     
    Else 'retrieve settings from db
         '''SMS_IsActivate        1,0 SMS_DeveloperAPI SMS_MobileText SMS_MessageText
         If UserPreferencesGetValue("SMS_IsActivate", "0") = "0" Then Exit Sub
         UserDeveloperAPI = UserPreferencesGetValue("SMS_DeveloperAPI")
         MobText = UserPreferencesGetValue("SMS_MobileText")
         MsgText = UserPreferencesGetValue("SMS_MessageText")
    End If
 
 
    'To put 91 etc for more than one mobile nos
    sMobText2 = Split(MobText, "=")
    sMobText1 = ""
    If UBound(sMobText2) > 0 Then
        sMobText1 = sMobText2(1) '2nd element
    End If
    If Len(sMobText1) > 0 Then
        sMobText3 = Split(myMob, ",")
        If UBound(sMobText3) > 0 Then
            myMob = ""
            For i = LBound(sMobText3) To UBound(sMobText3)
                If myMob = "" Then
                    myMob = sMobText3(i) '1st Mobile No
                Else
                    myMob = myMob & "," & sMobText1 & sMobText3(i) '2nd, 3rd, 4th Mob No
                End If
            Next i
        End If
    End If
 
 
    strURL = UserDeveloperAPI & "&" & MobText & myMob & "&" & MsgText & myMsg
 
    If AskToSend Then
        If MsgBox("Do you want to send SMS?", vbYesNo + vbDefaultButton1) = vbNo Then
            Exit Sub
         
        End If
    End If
    Dim WinHttpReq As Object
 
    Set WinHttpReq = CreateObject("Msxml2.XMLHTTP")
    'strURL = "http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=demouser&password=399501089&sendername=DM&mobileno=919999999999&message=Hello"
    'Replace the Message & MobileNo with the no to whom you want to send SMS
    With WinHttpReq
          .Open "GET", strURL, False
        .Send
        sResult = .responseText
    End With
    If ShowStatus Then MsgBox "Status of Sent SMS  is=" & sResult
   
    Exit Sub
ArunKakkarErr:
    MsgBox ("Sorry there is some error while sending sms" & vbCrLf & Err.Description)
 
End Sub



Public Function UserPreferencesGetValue(ByVal SettingName As String, Optional ByVal DefaultValue As String = "", Optional ByVal myTable As String = "UserPreferences", Optional ByVal NameCol As String = "SettingName", Optional ByVal ValueCol As String = "SettingValue")
    Dim s As String
    s = ""
    Dim rptRs As New ADODB.Recordset
    If rptRs.State Then rptRs.Close
    rptRs.Open "select * from " & myTable & " where " & NameCol & "='" & SettingName & "'", Scon, adOpenStatic, adLockReadOnly
    If rptRs.EOF = False Then '  if already present then return
        s = IIf(IsNull(rptRs!SettingValue) = False, rptRs!SettingValue, DefaultValue)
    Else ' if not present then return default
        s = DefaultValue
    End If
    UserPreferencesGetValue = s
End Function

Public Sub UserPreferencesSetValue(ByVal SettingName As String, ByVal SettingValue As String, Optional ByVal myTable As String = "UserPreferences", Optional ByVal NameCol As String = "SettingName", Optional ByVal ValueCol As String = "SettingValue")
    Dim rptRs As New ADODB.Recordset
    If rptRs.State Then rptRs.Close
    rptRs.Open "select * from " & myTable & " where " & NameCol & "='" & SettingName & "'", Scon, adOpenStatic, adLockReadOnly
    If rptRs.EOF = False Then '  if already present then update
        Scon.Execute "Update " & myTable & " set " & ValueCol & "  = '" & SettingValue & "' where " & NameCol & " = '" & SettingName & "'"
    Else ' if not present then insert
        Scon.Execute "Insert into " & myTable & " (" & NameCol & "," & ValueCol & ") values ('" & SettingName & "','" & SettingValue & "')"
    End If
End Sub

Public Sub AKakkar_Error(Optional ByVal Source As String = "")
    Dim s As String
    s = "Sorry for the inconvinence, There is some error"
    s = s & vbCrLf & "ABM Source=" & Source
    s = s & vbCrLf & "Error No=" & Err.Number
    s = s & vbCrLf & "Error Description=" & Err.Description
    s = s & vbCrLf & "Error Source=" & Err.Source
    MsgBox s, vbCritical
End Sub

Note:::>>>> If someone need sample program, just mail me, I would like to help you.


Now after learning it you can explore it in details to get more powerful options for your programs.
Best of Luck for Programming.

222 comments:

  1. NIce one

    http://www.boomadcom.com

    ReplyDelete
  2. Jai Ram Ji Ki Bhai,
    Can u send a sample project in vb6.0 to send sms using internet. Plz email me at raisksunil@gmail.com.

    ReplyDelete
    Replies
    1. ram ram sirji, can u send me sample code in vb6 at somnathmali@ymail.com..........

      Delete
  3. can u send me this sample code in vb6
    thank u

    ReplyDelete
  4. can u send me this sample code in vb6
    thank u
    prashantp_patil@hotmail.com

    ReplyDelete
  5. hi pls send sample code in vb6

    saraner2007@gmail.com

    ReplyDelete
  6. As per request I had send the demo version to all the requests.

    ReplyDelete
    Replies
    1. Hi Arun ji,

      i am sanjeev
      can u send me this sample code in vb6
      thank u
      coolsanjeeva@gmail.com

      Delete
  7. Hi
    can you please send me sample code at waqarzahid80@hotmail.com

    ReplyDelete
  8. hey plz mail me ur sample code nik_0811@yahoo.co.in

    ReplyDelete
  9. can u send me this sample code in vb6
    thank u (gund.rajesh@yahoo.co.in)

    Rajesh Gund

    ReplyDelete
  10. Dear friends , thanks for paying your interest in this blog.
    I had sent demo project to Mr. Waqar,nik_0811, Rajesh.

    Regarding query to Send SMS in other countries.

    Hi Waqar,
    I know only sites who provide their services in India only.
    Please search on net/Google to find sites to provide services in your country.

    You can also visit my blog where I mentioned some Indian sites.
    You can consult them regarding this in your country.

    ReplyDelete
  11. hai i want also this project please send me to ponmalar2050@gmail.com

    ReplyDelete
    Replies
    1. Hi, I have sent the sms demo, Please follow the instructions given in mail to get proper working of project

      Delete
  12. hi arun I also want this project..... please send me at iiamvin@gmail.com

    ReplyDelete
    Replies
    1. Hi, I have sent the sms demo, Please follow the instructions given in mail to get proper working of project

      Delete
  13. hello sir i need this project code to be implemented in a VB 6.0 ...pliz help me..
    taraju.88ism@gmail.com

    ReplyDelete
    Replies
    1. Hi, I have sent the sms demo, Please follow the instructions given in mail to get proper working of project

      Delete
  14. hello... shall u please give me this project! it wll be very much helpful for my final year project... mail ID "rajee.moorthy@gmail.com"

    ReplyDelete
    Replies
    1. Hi, I had sent you the demo project, you need valid developer api to use this project.

      Delete
  15. It is nice one and i need sample program.
    My ID is sm829051@gmail.com

    ReplyDelete
    Replies
    1. Hi, I had sent you the demo project, you need valid developer api to use this project.

      Delete
  16. Sir, Please send me the sample project of sms through internet in vb6. my ID is : survittal@gmail.com

    ReplyDelete
  17. Hello Arun Sir,
    Can you please send this demo project on my email id naresh.thakur1987@gmail.com

    ReplyDelete
  18. thanks... my work done using yr help

    ReplyDelete
  19. Please send me the vb code. I have applied for free account in '1. http://www.mysmsmantra.com/'. My mail id sudda04@gmail.com

    ReplyDelete
  20. Hi,

    Can you please help me for Huwaei device.
    I want to create SMS Automation.

    ReplyDelete
  21. hi thaks for this code but i want this project for demo so pls send me on my e-mail id
    youwithmishra@gmail.com

    ReplyDelete
  22. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. This comment has been removed by the author.

      Delete
    2. Hi, just use split method which would split your message in array saparated by given char here is space , then you can get individual items.
      Please search on net how to use Split method in vb6

      Delete
    3. This comment has been removed by the author.

      Delete
  23. Can u send a sample project in vb6.0 to send sms using internet. Please email me at muhsinkyl@gmail.com.

    ReplyDelete
    Replies
    1. plz me this code on my email id :dadsleo_rana@yahoo.com

      Delete
  24. pls i want the code and the demo pls email me at olusoji16@yahoo.com

    ReplyDelete
  25. Hi friends I have sent the demo via mails till date to all requested queries, Soon, I would provide link to download this demo

    ReplyDelete
  26. hi sirji I also want this project..... please send me at akansh.khare@gmail.com
    It's helpfull for me

    ReplyDelete
  27. Dear Arun Kakkar,
    Can you please send this demo project on my e-mail address dimbil@hotmail.com

    Sincerely Yours,
    Bill Dimitriou

    ReplyDelete
  28. Hello!
    Sir Arun! i'am Self study Programmer! and i want to make a useful program! Like you! Sir Arun! Send me your Vb 0.6 code and sample SMS program...! thank in advancce!
    this is mey Email Address: JC_Suribas@yahoo.com
    Truely Your!
    Julius Cesar Suribas

    ReplyDelete
  29. Thanks everybody for taking interest in this blog, I had sent the demo project to almost all request so far

    ReplyDelete
  30. Hi Arun,
    Please forward me your demo application to my mail id srini_visioninfo@yahoo.co.in
    Besides that do you have any idea how we can read sms coming to our SIM and store in a database? if so kindly advise.

    ReplyDelete
    Replies
    1. Hi friend,
      I have just send you the demo project,

      To read/get sms for your sim,

      To do so, you have to take the api from the SIM Service provider to read sms coming to that particular sim & then you can use timer event to check whether any sms had come or not on you sim.

      But to be practical, Generally, no SIM Service provider would provide such api due to security reasons or some other technical reasons, but yes if they provide such api, then it is very much achievable.

      Delete
    2. Please forward demo project to me at following email id
      sunandabang@rediffmail.com

      Delete
  31. Mr Arun Kakkar

    Hi I am Arunkumar Hukkeri MSc Gulbarga Karnatak today i was search for sms handling ads and i came

    across your note on sms . and i found it very informative and i tried and next i will try after i get developer api as mentioned .

    thanks

    my mail id arunkumarbbsr@gmail.com

    ReplyDelete
    Replies
    1. Hi Arun,
      Thanks for liking this information, I am using it & its working very fine so far. Just keep in mind mentioned instructions like DND rule, special characaters & of course valid Developer API

      Delete
  32. Hi Arun,

    I'm Yuvarajan and uvan24@gmail.com is my Email ID. Please send the code to me also...

    ReplyDelete
  33. Hi Arun

    I am Venkat and located in Bangalore, India.my email id is venkat_sr@hotmail.com. Can you pls send the sample project at the earliest. I urgently need to provide sms interface to my LIS application which sends sms to doctors and patients on say patient registration, critical lab values observed etc

    ReplyDelete
  34. Hi Arun can u plz send me the source code plz. I'd: startharik@gmail.com

    ReplyDelete
  35. Dear Arun,
    Please help me to create vb script to send SMS using data from EXCEL through Internet.
    My Email ID gajendra_indora@rediff.com

    ReplyDelete
  36. Please send your sample code for this to my email id meera1990a@gmail.com

    ReplyDelete
  37. Hi friends, I had sent the demo to almost all requests. Please note that, I also had provided the link to download the demo project

    ReplyDelete
  38. Hello plz i want the code and the demo pls email me at upadhyaydilip@gmail.com

    ReplyDelete
  39. Thanks to all the friends to like this, I hope it would be very useful for everybody.
    Please note that:
    Just below the example, I also had provided the link to download the demo project

    ReplyDelete
  40. pls send the code on youwithmishra@yahoo.co.in

    ReplyDelete
  41. great service you are doing. i want sample code

    innovative.invest2008@gmail.com

    ReplyDelete
  42. Great!.. wow!, Sir can you send me your sample demo project if it is ok with you?.
    Thank Your Sir!. :)

    email: pnxstan23@yahoo.com

    GOD BLESS :)

    ReplyDelete
  43. Hello Arun sir

    I need code of sending sms through mobile.can u plz send me on callmedivyaonly@gmail.com.Its urgent

    thanks
    Divya

    ReplyDelete
  44. Hi friends, I had sent the demo to almost all requests. Please note that, I also had provided the link to download the demo project

    ReplyDelete
  45. hello sir
    i need basic code of this software plz send me code deepakratnavat@gmail.com

    ReplyDelete
  46. hello to all,

    I want to send sms free in vb6 please help me

    ReplyDelete
    Replies
    1. Please read the blog carefully & download the demo project to get more idea,

      Delete
  47. How to send sms on DND(Do Not Disturbed) activated no
    Hi Friends, after getting lot of queries on sending sms on DND nos,
    To send on these nos, there are two ways,
    way 1> > You have to get the format to be registered in the country law as in India, only then you can send sms on DND nos
    e.g if your format is as below (approved by Govt. of your country)

    Dear Customer, Your Order: XXXX despatched on xxxx. Please pay the amount after receiving it from our executive xxxxx.

    In above example, you can put values in place of XXXX SO THAT YOU MAY GET your desired message.

    Way 2> Ask your sms service provider to find way to send sms on DND nos.

    ReplyDelete
  48. How to send sms via mobile.

    Dear friends, I have not studied the process of sending sms via mobile, but if you are using internet via your mobile, you can send
    sms but only using valid api not by using sms package of your mobile,
    For this you need to consult your mobile connection provider, so that you can send sms via them.

    ReplyDelete
  49. hello sir i need this project code to be implemented in a VB 6.0 my mailid kmwarshini@gmail.com

    ReplyDelete
  50. Hi Arun,

    This is Subramanyam , I want to use this SENDing SMS code in my Project please mail me to mY ID k_smanyam@yahoo.com
    thanx in advance

    ReplyDelete
  51. Hello,

    This is Nitin . I want to implement SMS sending application using vb 6.0. please send the code to my email id
    nitinhiwase76@gmail.com

    Thanks !

    ReplyDelete
  52. i want to use this SMS sending code in my project please send the code.
    email id :- rajkamal220@gmail.com

    ReplyDelete
  53. can you make an app to send sms to maldives.
    http://www.afreesms.com/intl/maldives
    above url works for Maldives.
    email id: thisisit431@gmail.com
    thank you

    ReplyDelete
  54. sir send me on yadawraaj@yahoo.in

    ReplyDelete
  55. Please send me the code for sending SMS through mobile / internet through VB6.0 application. My email address is dani.rajiah@gmail.com

    Also suggest me the best premium / payable bulk SMS provider here in Mumbai, India.

    Thanks.

    Dani Rajiah

    ReplyDelete
  56. I really appreciate this post. I have been looking everywhere for this!
    Thank goodness I found it on Bing. You've made my day! Thank you again!

    My blog :: adfoc.us

    ReplyDelete
  57. sir, how to obtain Developer API from the service provider. What is the procedure ?
    Please help me.

    ReplyDelete
  58. Hi Arun,

    Good Day.

    Nice to see the content of the project.

    Could you send the project to me.It will be helpful to me.

    How much they charge to get developer API from the service provider. What is the procedure to get Developer API.

    My Mail ID : rbala100@gmail.com

    Thanks for your support.
    Balamurugan R

    ReplyDelete
  59. Hi, can u please send code in VB6 to ezaty.bakar@gmail.com

    ReplyDelete
  60. natural remedy fatty liver disease natural remedy fatty liver disease natural remedy fatty liver disease

    Also visit my site; treatment of fatty liver disease+ayurveda

    ReplyDelete
  61. Hi, I want to send multiple sms from MSACCESS database named SMS having fields mobileno and Duty for informing my colleagues of their duty time in VB6. If you can send me the code.. i will be highly obliged. Thank you in advance... rameshiy@gmail.com or rdshrivastava@yahoo.com

    ReplyDelete
  62. I blog often and I genuinely thank you for your information.
    This article has really peaked my interest. I am going to book mark your website and keep
    checking for new details about once a week.
    I subscribed to your RSS feed too.

    my blog post ... Dragon on Dragonvale

    ReplyDelete
  63. hi i need your help please help me manimaran.forever@gmail.com 7639426002

    ReplyDelete
  64. Hi , Your SMS code is working successfylly, Thanks

    ReplyDelete
  65. Hi sir,
    my sms sending problem is solved...thanks
    .
    .
    bt now i want to sent the marathi sms then what i do. it means which fond i use plz help me sir

    ReplyDelete
  66. Hello sir ,,,
    pls help me
    vb6.0 to way2sms linking project ....
    pls send it my email id
    sunnyparsana1448@gmail.com

    freeware sms sending application similar also send it ...



    ReplyDelete
  67. Hai good work keep it up and nice site design

    ReplyDelete
  68. Please forward demo project to me at following email id
    haider5710@gmail.com

    ReplyDelete
  69. Hi
    Send me the demo code for send SMS from VB6 , Which work for Bulk sms my ID sagar_korade@yahoo.in

    ReplyDelete
  70. Hello sir,
    i want to send msgs to multiple user through vb 6.0 plz send me appropriate code at adityagaurr@gmail.com

    ReplyDelete
  71. Hello Sir,
    Please forward demo project to me at following email id
    sureshkumarsus@gmail.com

    ReplyDelete
  72. Please send me the code for sending SMS through internet through VB6.0 application. My email address is upupendra3@gmail.com

    ReplyDelete
  73. Hi Friends, I have provided the download link at top. Please use this link to download both sample project with coding, setup of demo without coding----- Arun Kakkar

    ReplyDelete
  74. I'm dying to send sms through internet using my vb6 application. I have my SMSCountry user name and password, but still I'm unable to text to mobile. Please Help.
    Thanks.
    `````````` SAGAR

    ReplyDelete
  75. hai sir,

    pls i want the code and the demo pls email me at sarathdastnr@gmail.com
    hope you consider me as others.

    ReplyDelete
  76. Jai Ram Ji Ki Bhai,
    Can u send a sample project in vb6.0 to send sms using internet. Plz email me at swamisantosh@gmail.com.

    ReplyDelete
  77. Request you to please send a sample project in vb6.0 to send sms using internet.

    Please email to harshadmehta@hotmail.com

    ReplyDelete
  78. Please send me sample project in vb6.0 to send sms using internet. on prpvikas@gmail.com

    ReplyDelete
  79. I have sent the demo code to all those who send me mail, I request you to kindly click above download link to get sample demo code

    ReplyDelete
  80. hi,
    i am going to develop school attendance system in which i am sending sms to the parents mobile number those are absent today, i have a test API, and i am try to send sms but this is not properly work, can you send me complete code for sending sms.
    My id is ajit.ssd07@gmail.com

    Thanks

    ReplyDelete
  81. Ram Ram Bhai

    Please send me sample project in vb6.0 to send sms using internet. on sinhmar_surender@rediffmail.com

    ReplyDelete
  82. Dear Mr.Arun Kakkar Please send me sample project in vb6.0 to send sms using internet. on p.sivakumar2008@gmail.com

    ReplyDelete
  83. Can u send a sample project in vb6.0 to send sms using internet. Plz email me at titusjebaraj@gmail.com

    ReplyDelete
  84. That 7 lines of code, simply outstanding and powerfull
    I have tried using XML, HTTP, third party dlls......etc.,
    But your's is "The Best"
    Thanks.

    ReplyDelete
  85. i am suhail babu
    can u send me this sample code in vb6
    thank u
    suhailbabup@gmail.com

    ReplyDelete
  86. Best this that any body can provide me.

    ReplyDelete
  87. I am getting the error while testing your code, Error is : Status of sent parameters = Not enough parameters. Though I using exactly what you specified in your code :
    i.e. "http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=demouser&password=399501089&sendername=DM&mobileno=919999999999&message=Hello"

    ReplyDelete
  88. Dear sir, Please send me sample project in vb6.0 to send sms using internet. on dinamohan@gmail.com

    ReplyDelete
  89. Hi sir Please Send Me Code on my Mail sp3941@gmail.com

    ReplyDelete
    Replies
    1. Hi Sandeep,

      I think, I had already provided you the demo code.
      If you still do not get it, please drop me a mail at arunkakkar1@gmail.com

      Regards
      Arun Kakkar

      Delete
  90. Franciscan e-Care School SMS System provides the best way for schools to directly communicate with the parents. School administration can easily inform about school announcement, examination schedule, and absenteeism report to the parents by SMS alerts. This is a cost effective technology used by school administration.

    ReplyDelete
  91. hello sir,

    please send me the demo project as the same is not available on the above mentioned links.
    i want to send sms from visual basic 6 and i have purchased mysmsmantra package for sending sms but the code is not running as it hangs the application when i click on send button in my test program which is given below
    Private Sub Command1_Click()
    Dim sUrl
    Dim sAPI_ID, sPassword, sUsername, sMobileNo, sText, ssendername
    Dim oXMLHTTP, sPostData, sResult
    sUrl = "http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?"
    sPassword = "198201088"
    sUsername = "mantdemo"
    sMobileNo = "9873249350"
    ssendername = "SMDEMO"
    sText = "This is an example message"
    sPostData = sPostData & "&username=" & sUsername
    sPostData = sPostData & "&password=" & sPassword
    sPostData = sPostData & "&sendername=" & ssendername
    sPostData = sPostData & "&mobileno=" & sMobileNo
    sPostData = sPostData & "&message=" & sText
    Set oXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")

    oXMLHTTP.Open "POST", sUrl, False
    oXMLHTTP.SetRequestHeader "Content-Type", "application/x-www-Form-urlencoded"
    oXMLHTTP.Send sPostData
    sResult = oXMLHTTP.responseText
    Set oXMLHTTP = Nothing
    Response.Write sResult
    MsgBox "g"
    End Sub

    ReplyDelete
  92. my email id is gps100177@gmail.com please send the demo project to me for sending sms from visual basic 6.
    Thanks

    ReplyDelete
  93. Hi Gurpreet, I had sent the demo project at above mentioned mail id by you.

    ReplyDelete
  94. carry on, don’t stop...very nice… i really like your blog. bulk sms india

    ReplyDelete
  95. please send the demo project to my email : salih.ka89@gmail.com
    Thanks

    ReplyDelete
  96. Hello Sir can u please send the demo project to my email : chaudharis.s@gmail.com

    ReplyDelete
  97. Hi sir...
    i need to send tamil sms.how can i send the tamil letters to the SMS provider using the URL.

    Thanks
    Muthupandi

    ReplyDelete
  98. Good Morning Sir, Sir using this code can i send SMS to 10000 people? I tried to send sms but i am getting error 414 Request-URL Too Large.
    Please give me idea. My mail id is- nadeemburney84@gmail.com
    Thanks
    Nadeem

    ReplyDelete
  99. Nice Article..and Doing Bulk SMS Business is Very Effective..Todays advertising Field If we Talk about fatest and high conversion medium of marketing than it is Bulk SMS Marketing..if you are looking Bulk SMS company in Jaipur than Please Visit us..

    ReplyDelete
  100. SMSGATEWAYHUB offers users to send SMS from Excel sheet directly. As most Business Professionals use MS Excel for organizing their customer data; SMSc, along with its feature to send SMS from Excel, empowers all users to save their precious time and send personalized bulk SMS.

    ReplyDelete
  101. Bulk SMS Services From Pnpuniverse provides web using http and smpp server shift through the DND data and TRAI rules by sending sms to simply choice base.
    Bulk SMS Service

    ReplyDelete
  102. dear arunji, please mail me code to send unicode sms via visual basic on uoberoi@yahoo.com

    ReplyDelete
  103. I m trying same in my project but facing one error ie. the system cannot locate resource specified

    ReplyDelete
  104. Voice SMS in India-Elaboration is reliable bulk SMS service provider in Jaipur India offering best quality voice calls, voice SMS and mobile SMS marketing services in Jaipur.

    ReplyDelete
  105. My email id is deepakchauhan.mail@gmail.com please send the demo project to me for sending sms from visual basic 6.
    Thanks

    ReplyDelete
  106. My email id is deepakchauhan_mail@yahoo.com please send the demo project to me for sending sms from visual basic 6.
    Thanks

    ReplyDelete
  107. this is very use full information ....and thanks for sharing....
    Best bulk sms provider in chennai

    ReplyDelete
  108. Admiring the time and effort you put into your blog and detailed information you offer!.. Bulk SMS Ahmedabad

    ReplyDelete
  109. Thanks for the wonderful piece of article, I was seeking something relevant to Bulk SMS Indore and found your post, it is really very interesting and informative.

    ReplyDelete
  110. Hai i need your sample code janabsc@yahoo.com. thanks in advance.....

    ReplyDelete
  111. Hai! Please send your sample code to esaravanavel@gmail.com

    ReplyDelete
  112. Bulk SMS Marketing in Delhi-Elaboration is a one of the leading Bulk SMS Marketing Company in Delhi in India and Bulk SMS Provider in Delhi, our team help you to send SMS to your costumer.

    ReplyDelete
  113. We are professional in website development and designing. You can get our services in website design and send bulk sms or sms services. We give guaranty and best quality of our work.

    ReplyDelete
  114. Thanks for sharing nice information
    SMS marketing are getting popular day by day that assits you to mark your presence in the life of your customers.

    ReplyDelete
  115. Genesis Technologies having job vacancies for developers in Java. We are looking for talented people who are willing to work in a challenging environment. Now get the opportunity to work with us and acquire Java Developer Jobs in Indore.

    ReplyDelete
  116. This is a really good article thanks tech about very nice post thanks admin
    Good Morning Images

    ReplyDelete
  117. This comment has been removed by the author.

    ReplyDelete
  118. Your blog are very interesting I am a regular reader of your blog. Long Code Services Provider

    ReplyDelete
  119. Thanks for your post
    www.goodnightpictures.com is the best website to find good night sms and messages to send to lover at night to wish a good night.

    ReplyDelete
  120. Hi admin, please send the vb6 code to nwogumc@gmail.com I need it seriously

    ReplyDelete
  121. Fantastic information. Thanks for sharing this information!!!! Bulk SMS Service Provider in India

    ReplyDelete
  122. Hi brother
    Can you send me the code to sansaj9@gmail.com

    Thank you in advance

    Saj

    ReplyDelete
  123. This comment has been removed by the author.

    ReplyDelete
  124. Our SMS service provider sms.rmtechnology.in/. provided HTTP API as
    http://www.sms.rmtechnology.in/api/smsapi.aspx?username=yourUsername&password=yourPassword &to=9xxxxxxxxx,8xxxxxxxxx,7xxxxxxxxx&from=yourSenderId &message=Your message content in other language.&code=2

    I have developed all programms using VB6, but I am unable to send SMS to my students in college. Please help me to solve the problem.
    thanks
    Vijay
    vijaydharurkar@hotmail.com

    ReplyDelete
  125. Interesting Blog..! See more @ http://bit.ly/2oVutDY

    ReplyDelete
  126. Informative and useful information.Keep sharing...! Bulk SMS Short code

    ReplyDelete
  127. Nice post! I thank you for sharing this nice blog with us. Likewise, I would like to say something that Happy Heap Marketing is also one of the Bulk Voice Messaging Services

    ReplyDelete
  128. Hi Admin
    Can you send me the VB6 code to ragnath@gmail.com

    Thanks

    Raghu

    ReplyDelete
  129. Hello Arun,
    Can you please send project code on my email id bitbarshi6781@gmail.com
    Thanks
    Vijay

    ReplyDelete
  130. You will find the multiple voice SMS service provider because it is the powerful tools used for promoting products and in disseminating messages and information in the whole country.

    ReplyDelete
  131. Bulk SMS are best way to communicate personal computer to mobile phone and bulk sms has become the most effective, cheap and reliable means of communication, advertising, marketing, also.
    Thanks for sharing...here you find similar like you API SMS Service Provider in India.

    ReplyDelete
  132. I am daily reader of your blog.thanks for sharing this post..!!!Bulk SMS Services Provider In Jaipur

    ReplyDelete
  133. Wonderful post. This is a nice post and gives in-depth information. Great tips!Bulk SMS Services Provider In Chennai

    ReplyDelete
  134. This is a very helpful. Great Tips !! Keep publishing your content and published new content for good readers. SMS Service Provider In India .

    ReplyDelete
  135. Nice post and gives in-depth information. Thanks for this great post about Bulk SMS Service Provider In Delhi .

    ReplyDelete
  136. Amazing post, its very beneficial to me. Thank you!!!

    ReplyDelete
  137. Bulk SMS is best way of marketing so prefer suitable company for long term services.
    Regards:-
    Bulk SMS service | Bulk SMS API | How to send Bulk SMS

    ReplyDelete
  138. hi i have problem in vb6.0 bulk sms coding please help me smsundaram.1989@gmail.com or 09791690602

    ReplyDelete
  139. api coding for vb6.0 sendthrough smsundaram.1989@gmail.com

    ReplyDelete
  140. Kindly send sample code for me also.
    sudhasbabux@gmail.com

    ReplyDelete
  141. Thanks for sharing this post. Your post is very informative. I have read all your posts and all are very informative. Bulk SMS Provider in Panipat

    ReplyDelete
  142. Thanks for giving this information. your blog is good and I got so much knowledge thank you. Bulk SMS Provider in Rajasthan and IVR Software Provider in Rajasthan

    ReplyDelete
  143. Hi Arun., Can i have your project file?? mjprakash25@gmail.com

    ReplyDelete
  144. This comment has been removed by the author.

    ReplyDelete
  145. Maxwell Communication is one of the leading bulk SMS service, Transactional & Promotional SMS Service providers in Chennai, India. We guide you to reach your targets easily. Bulk sms gateway provider in chennai, india.

    ReplyDelete
  146. I m very glad to saw such a amazing and wonderful blog . In the digital Era it is best way to promote your business via Bulk Sms, Email Marketing etc. GNEC Media Pvt. Ltd is Best Bulk Sms provider who provide quality service at reasonable price to explore your business with digital marketing.

    ReplyDelete
  147. Bulk SMS is utilized as promotional SMS for SMS marketing. Our bulk SMS marketing solution helps you to send cheap bulk promotional SMS service provider in India. It's least expensive marketing solution to reach achieve imminent clients. MAXWELL Communication furnishes bulk SMS service with NDNC filter, so you don't have any lawful issues with NDNC Registry.Send Sms Online India.

    ReplyDelete
  148. great..

    can u provide me an application with ms access master table for multiple sms using vba

    ReplyDelete
  149. Thanks for your article and sharing your expertise, it's really appreciated.It helped me a lot for what i was searching for
    Email marketing Company India| Bulk Email marketing services

    ReplyDelete
  150. This comment has been removed by the author.

    ReplyDelete
  151. Bulk voice calls are automated calls which include computerized dialing numerous numbers without a moment's delay utilizing PC oversaw records, playing a pre-recorded message to naturally dialed mobile or landline numbers. This communication method of bulk voice calls has the advantage of most penetrative reach and personalized messages. .Voice Sms Service Providers India

    ReplyDelete
  152. This comment has been removed by the author.

    ReplyDelete
  153. Thanks for sharing valuable information. OneXtel is the best Bulk SMS Provider and across India providing bulk sms services at best prices with reliable Gateways and APIs.

    ReplyDelete
  154. Dear Arun Kakkar,
    Can you please send this demo project vb.net 2008 on my e-mail address ibrahim205205@gmail.com

    Sincerely Yours,
    ibrahim

    ReplyDelete