RSS Forums RSS
Please support our VB.NET advertiser: Programming Forums
Views: 5769 | Replies: 8
Reply
Join Date: Feb 2005
Posts: 18
Reputation: N[e]tt[e] is an unknown quantity at this point 
Rep Power: 4
Solved Threads: 0
N[e]tt[e] N[e]tt[e] is offline Offline
Newbie Poster

Sms.. Help in vb.net

  #1  
Mar 25th, 2005
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?
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jun 2005
Posts: 3
Reputation: mm77 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
mm77 mm77 is offline Offline
Newbie Poster

Re: Sms.. Help in vb.net

  #2  
Jun 6th, 2005
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
Reply With Quote  
Join Date: Jun 2005
Posts: 3
Reputation: mm77 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
mm77 mm77 is offline Offline
Newbie Poster

multipls forms in vb.net(urgent help needed)

  #3  
Jun 6th, 2005
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...
Reply With Quote  
Join Date: May 2007
Posts: 18
Reputation: thin_master is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 0
thin_master thin_master is offline Offline
Newbie Poster

Re: Sms.. Help in vb.net

  #4  
May 30th, 2007
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.
Reply With Quote  
Join Date: Oct 2006
Location: somewhere in West-Africa
Posts: 202
Reputation: jamello is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 6
jamello's Avatar
jamello jamello is offline Offline
Posting Whiz in Training

Re: Sms.. Help in vb.net

  #5  
May 31st, 2007
Originally Posted by N[e]tt[e] View 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?


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

 
'use the intellisoftwares' gateway
'objIntelliSMS = New IntelliSMS
'objIntelliSMS.PrimaryGateway = "https://www.intellisoftware.co.uk"
'objIntelliSMS.BackupGateway = "https://www.intellisoftware2.co.uk"
'objIntelliSMS.Username = "xxxxxxxxxxxxxxx"
'objIntelliSMS.Password = "xxxxxx"
'Try
' objIntelliSMS.SendMsg(strCellFoneNo, "This sms operation  is successful", "www.MySite.com")
' lblError.Text = "SMS Sent successfully to " & strCellFoneNo
'Catch Ex As Exception
' lblError.Text = "Error!: SMS could not be sent to " & strCellFoneNo
'Finally
'End Try

Reply With Quote  
Join Date: Feb 2007
Posts: 6
Reputation: mmangai is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 1
mmangai's Avatar
mmangai mmangai is offline Offline
Newbie Poster

Re: Sms.. Help in vb.net

  #6  
Jul 3rd, 2007
[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?
Reply With Quote  
Join Date: Oct 2006
Location: somewhere in West-Africa
Posts: 202
Reputation: jamello is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 6
jamello's Avatar
jamello jamello is offline Offline
Posting Whiz in Training

Re: Sms.. Help in vb.net

  #7  
Jul 5th, 2007
[quote=mmangai;398100]
Originally Posted by jamello View Post
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
Reply With Quote  
Join Date: Jul 2007
Posts: 4
Reputation: rodrod is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 1
rodrod rodrod is offline Offline
Newbie Poster

Re: Sms.. Help in vb.net

  #8  
Jul 18th, 2007
Hi guyz...here is a sample code to send SMS (to the world)...please (any junior/senior) poster update me with you feedbacks...
[code = VB.NET]
[inline code]
private void Send_Click(object sender, System.EventArgs e)
{
   try
      {
   	SmsTest.com.webservicex.www.SendSMSWorld smsWorld =  
         new SmsTest.com.webservicex.www.SendSMSWorld();
            smsWorld.sendSMS(txtEmailId.Text.Trim(), 
                    txtCountryCode.Text.Trim(), 
                    txtMobileNo.Text.Trim(), txtMessage.Text);
        lblMessage.Visible = true;
        lblMessage.Text="Message Send Succesfully";
      }
   
    catch(Exception ex)
    {
        lblMessage.Visible = true;
        lblMessage.Text="Error in Sending message"+ex.ToString();
    }
}

[/inlinecode]
Reply With Quote  
Join Date: Sep 2006
Posts: 6
Reputation: joshua__lim is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
joshua__lim joshua__lim is offline Offline
Newbie Poster

Re: Sms.. Help in vb.net

  #9  
Sep 28th, 2007
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
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 12:15 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC