Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys

i want to make a program sending sms throuhg 3g modem.

my purpose is to send multi sms to the numbers located in database.

For ex:

Dear <name> , you have won 1500$ ! Please call +905.... like that

When I use <name> , <name> should imply the names column located in the database

orderely ; sms program should send sms like that :

Dear John , you have won 1500$ ! Please call +905.... like that
Dear Smith , you have won 1500$ ! Please call +905.... like that

id name_column
1 John
2 Smith
3 Johnson


how can i send messages to the names located in the name column when I write <name> parameter in textMessage.Text control
Posted
Comments
Richard MacCutchan 1-Sep-12 9:01am    
Iterate the names column and for each name get the associated cell-phone number and send the message to that number. Exactly what is the part of this problem that you are having difficulty with?
beratxt 3-Sep-12 10:03am    
To be honest i dont know how to iterate.
if i do it how the datas will be receieved from the database ?
i will write like a code below ?

if(txtMessage.Text=="")

{
string name = dr["name"].ToString()... /// like that*
}
Richard MacCutchan 3-Sep-12 12:10pm    
Something like that. But you could always read the documentation on MSDN.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900