Hi,

Why don't you try Txtimpact.

They provide Activ X as wel as HTTP API.

Here is the site

http://www.txtimpact.com/

Try it............

Hello There,

I have Done Similar Work For My local Client.There are Third Party Component i am using But it Provide Source Code in VB.Net So you Can Change According to your Requirement.But i Ch rage you little bit for you.

Please Contact me on [email]<<Email Snipped>>[/email] For More Details Only Contact if you Ready to paid

Thank you.

SAFCo Software's TextMessagePLUS also has free software that will do this. The advantage is you do NOT need to know the recipients carrier. http://safcosoftware.com

Simple Code Send SMS via AT Command :
https://youtu.be/lvGASDO38wQ

        Try
                With SerialPort1
                    .Write("at+cmgf=1" & vbCrLf)
                    Threading.Thread.Sleep(1000)
                    .Write("at+cmgs=" & Chr(34) & TextBox1.Text & Chr(34) & vbCrLf)
                    .Write(TextBox2.Text & Chr(26))
                    Threading.Thread.Sleep(1000)
                End With
            Catch ex As Exception     

    End Try

Well in my case we have bought sms and we have a website so I just simplified my work by creating a simple php file which gets data to be sent then it sends the sms. In my VB.net I call this file and feed it with required data to complete.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.