•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Visual Basic 4 / 5 / 6 section within the Software Development category of DaniWeb, a massive community of 391,906 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,593 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Visual Basic 4 / 5 / 6 advertiser:
Views: 4714 | Replies: 6
![]() |
•
•
Join Date: Feb 2007
Posts: 3
Reputation:
Rep Power: 0
Solved Threads: 0
Please guys i need help with this. I am conversant with VB but i don't understand how am going to interrellate the Mobile phone and the Server to enable them to communicate. Can someone explain to me what steps i should take i don't mind if i could see a piece of code so i can know if am on the right track.Thank you.
•
•
Join Date: Mar 2007
Posts: 5
Reputation:
Rep Power: 0
Solved Threads: 0
I send sms but I always send it as email to the correctly formatted address for the mobile phone provider. I did a little project in VB6 to do exactly what you are asking about. It sends email through the users Outlook, a less than perfect solution.
You could use a dropdown/combo to allow the user to select a provider. Here's the code I'm using to handle the provider:
Now you need to get the phone number and put it on the beginning of the string. Something like this:
You could use a dropdown/combo to allow the user to select a provider. Here's the code I'm using to handle the provider:
Select Case cboProvider
Case "Cingular"
strProvider = "@cingularme.com "
Case "Verizon"
strProvider = "@vtext.com"
Case "AllTel", "AllTell"
strProvider = "@message.AllTel.com"
Case "T-Mobile", "TMobile"
strProvider = "@tmomail.net"
Case "Virgin Mobile", "VirginMobile"
strProvider = "@vmobl.com"
Case "Sprint"
strProvider = "@messaging.sprintpcs.com"
Case "Nextel"
strProvider = "@messaging.nextel.com"
Case "Cellular South", "CellularSouth"
strProvider = "@csouth1.com"
End SelectNow you need to get the phone number and put it on the beginning of the string. Something like this:
strEmailAddress = strPhNumber & strProvider
Last edited by AycheKay : Mar 3rd, 2007 at 8:44 am. Reason: Fixed Typo & Added further explanation.
•
•
Join Date: Feb 2007
Posts: 3
Reputation:
Rep Power: 0
Solved Threads: 0
Hi,
Thank you so much.I am definately going to give it a trial.At the moment i maneged to send an sms from VB to a mobile phone now am working on how to send an sms from the mobile to the PC.
Am doing my Engineering project where by a Tesco customer has to send an sms to the Tesco server and receive information on the location and price of a product in the supermarket.
Regards
Thank you so much.I am definately going to give it a trial.At the moment i maneged to send an sms from VB to a mobile phone now am working on how to send an sms from the mobile to the PC.
Am doing my Engineering project where by a Tesco customer has to send an sms to the Tesco server and receive information on the location and price of a product in the supermarket.
Regards
•
•
Join Date: Mar 2007
Posts: 3
Reputation:
Rep Power: 0
Solved Threads: 0
Search for "Logiccode GSM SMS ActiveX Dll" in google and download the required file.
It is easy to use. Include the reference for this DLL. Create Instance of the objects. Pass on the port name to which your mobile/GSM Modem is connected along with your mobile number, sim card number..then send.
Demo is available in the pack. Try this.
If this works. Kindly acknowledge.
If you find any other answer. Kindly forward it to me too...joshua@abstechlogiks.com
It is easy to use. Include the reference for this DLL. Create Instance of the objects. Pass on the port name to which your mobile/GSM Modem is connected along with your mobile number, sim card number..then send.
Demo is available in the pack. Try this.
If this works. Kindly acknowledge.
If you find any other answer. Kindly forward it to me too...joshua@abstechlogiks.com
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb Visual Basic 4 / 5 / 6 Marketplace
Similar Threads
- sending sms using vb.net (VB.NET)
- Send & Receive SMS Via mobile Phone from PC (Visual Basic 4 / 5 / 6)
Other Threads in the Visual Basic 4 / 5 / 6 Forum
- Previous Thread: Issue about passing parameter to Crystal Report 11..
- Next Thread: connect VB to OpenOffice(Calc) ?


Linear Mode