943,645 Members | Top Members by Rank

Ad:
  • VB.NET Discussion Thread
  • Unsolved
  • Views: 8088
  • VB.NET RSS
Mar 25th, 2005
0

Sms.. Help in vb.net

Expand Post »
Hi..anyone here have sms gateway coding (vb.net)for windows application??
i need a free service..meaning i will hope my application can able to send sms to my customer for latest news/promotions. how can i do so?
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
N[e]tt[e] is offline Offline
18 posts
since Feb 2005
Jun 6th, 2005
0

Re: Sms.. Help in vb.net

hi , i am muhtu. i also involve the same kind of project..

can u explain me ur project? did u found any solution??

if i can i will help u
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mm77 is offline Offline
3 posts
since Jun 2005
Jun 6th, 2005
0

multipls forms in vb.net(urgent help needed)

hi friends,

i created a multipls instaces of one windows form.

but i want to pass some information to an particular instances..which means if i open two instaces , i want to pass only one instace form. how to i differenciate that one...

pls i need ur help urgently...
Reputation Points: 10
Solved Threads: 0
Newbie Poster
mm77 is offline Offline
3 posts
since Jun 2005
May 30th, 2007
0

Re: Sms.. Help in vb.net

Free can be difficult. I dont know of any free service. But you can use a gateway using SMPP or you can get a easy url based account for sending SMS. The latter way is easy cos all you have to do is call a URL given by the provider with the message and the number as parameters and the message will get delivered.

Another method is to use a GSM modem and AT commands.

http://www.daniweb.com/techtalkforums/thread79473.html

check this thread.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
thin_master is offline Offline
18 posts
since May 2007
May 31st, 2007
0

Re: Sms.. Help in vb.net

Click to Expand / Collapse  Quote originally posted by N[e]tt[e] ...
Hi..anyone here have sms gateway coding (vb.net)for windows application??
i need a free service..meaning i will hope my application can able to send sms to my customer for latest news/promotions. how can i do so?
This you can use. I registered with this outfit and I could buy smses and send sms to any phone through my website. The following code shows the format. It's really simple. Any company you register with will give you the dlls to install on your machines giving you access to their gateways. Best of luck. Get back to me for further questions

VB.NET Syntax (Toggle Plain Text)
  1.  
  2. 'use the intellisoftwares' gateway
  3. 'objIntelliSMS = New IntelliSMS
  4. 'objIntelliSMS.PrimaryGateway = "https://www.intellisoftware.co.uk"
  5. 'objIntelliSMS.BackupGateway = "https://www.intellisoftware2.co.uk"
  6. 'objIntelliSMS.Username = "xxxxxxxxxxxxxxx"
  7. 'objIntelliSMS.Password = "xxxxxx"
  8. 'Try
  9. ' objIntelliSMS.SendMsg(strCellFoneNo, "This sms operation is successful", "www.MySite.com")
  10. ' lblError.Text = "SMS Sent successfully to " & strCellFoneNo
  11. 'Catch Ex As Exception
  12. ' lblError.Text = "Error!: SMS could not be sent to " & strCellFoneNo
  13. 'Finally
  14. 'End Try

Reputation Points: 215
Solved Threads: 6
Posting Whiz in Training
jamello is offline Offline
219 posts
since Oct 2006
Jul 3rd, 2007
0

Re: Sms.. Help in vb.net

[quote=jamello;377646]This you can use. I registered with this outfit and I could buy smses and send sms to any phone through my website. The following code shows the format. It's really simple. Any company you register with will give you the dlls to install on your machines giving you access to their gateways. Best of luck. Get back to me for further questions



hi jamello
how much this bulk gateway costs.bcoz i need it for my project.approximately we can send 200 a year.so it s not affordable.
then where do we get those service providers?
Reputation Points: 10
Solved Threads: 1
Newbie Poster
mmangai is offline Offline
12 posts
since Feb 2007
Jul 5th, 2007
0

Re: Sms.. Help in vb.net

[quote=mmangai;398100]
Click to Expand / Collapse  Quote originally posted by jamello ...
This you can use. I registered with this outfit and I could buy smses and send sms to any phone through my website. The following code shows the format. It's really simple. Any company you register with will give you the dlls to install on your machines giving you access to their gateways. Best of luck. Get back to me for further questions



hi jamello
how much this bulk gateway costs.bcoz i need it for my project.approximately we can send 200 a year.so it s not affordable.
then where do we get those service providers?
Why don't you try the link I gave in the original post. The pricing and costs are explicit on the web site (www.intellisoft.co.uk).
Successful? get back to me. Peace
Reputation Points: 215
Solved Threads: 6
Posting Whiz in Training
jamello is offline Offline
219 posts
since Oct 2006
Jul 18th, 2007
0

Re: Sms.. Help in vb.net

Hi guyz...here is a sample code to send SMS (to the world)...please (any junior/senior) poster update me with you feedbacks...
VB.NET Syntax (Toggle Plain Text)
  1. [code = VB.NET]
  2. [inline code]
  3. private void Send_Click(object sender, System.EventArgs e)
  4. {
  5. try
  6. {
  7. SmsTest.com.webservicex.www.SendSMSWorld smsWorld =
  8. new SmsTest.com.webservicex.www.SendSMSWorld();
  9. smsWorld.sendSMS(txtEmailId.Text.Trim(),
  10. txtCountryCode.Text.Trim(),
  11. txtMobileNo.Text.Trim(), txtMessage.Text);
  12. lblMessage.Visible = true;
  13. lblMessage.Text="Message Send Succesfully";
  14. }
  15.  
  16. catch(Exception ex)
  17. {
  18. lblMessage.Visible = true;
  19. lblMessage.Text="Error in Sending message"+ex.ToString();
  20. }
  21. }
  22.  
  23. [/inlinecode]
Reputation Points: 10
Solved Threads: 1
Newbie Poster
rodrod is offline Offline
4 posts
since Jul 2007
Sep 28th, 2007
0

Re: Sms.. Help in vb.net

If you got a phone with a data cable, you can try using this freeware, it comes with HTTP API and a sample HTML form to post the SMS - http://www.visualgsm.com/products_vgsmlite.htm
Reputation Points: 10
Solved Threads: 0
Newbie Poster
joshua__lim is offline Offline
16 posts
since Sep 2006

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in VB.NET Forum Timeline: How to get and display .Net .Exe's running in a machine...?
Next Thread in VB.NET Forum Timeline: Elements placed on Windows Form don't stay in place





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC