Programming Tutorials

Comment on Tutorial - Send SMS using VB code By Emiley J



Comment Added by : MOHAN

Comment Added at : 2011-06-29 04:08:04

Comment on Tutorial : Send SMS using VB code By Emiley J
The code is working for me as i have included " in the proper place.

MSComm1.Output = "AT+CMGF=1" & vbCrLf
Sleep 500
MSComm1.Output = "AT+CSCA=""+919440099997""" & vbCrLf
Sleep 500
'Replace this with your mobile Phone's No.
MSComm1.Output = "AT+CMGS=""+91" & TxtTo.Text & """" & vbCrLf


View Tutorial