Click here to Skip to main content
15,891,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i can send sms in English but when i use arabic language i resieve ????
please help me >>>
this is a part of my graduation project ... thanks

code...
Try
With SerialPort1
.PortName = ComboBox1.Text
.BaudRate = 9600
.Parity = Parity.None
.DataBits = 8
.DtrEnable = True
.RtsEnable = True
.Handshake = Handshake.RequestToSend
.DtrEnable = True
.RtsEnable = True
.NewLine = vbCrLf
.Open()
End With
Catch ex As Exception
MsgBox(ex.Message)
End Try

'send sms ....


Try
If SerialPort1.IsOpen Then
With SerialPort1
.Write("AT" & vbCrLf)
.Write("AT+CMGF=1" & vbCrLf)
.Write("AT+CMGS=" & Chr(34) & "+249919203867" & Chr(34) & vbCrLf)
.Write("مرحبا" & ChrW(26))
MsgBox("send")
End With
Else
MsgBox("not send")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
Posted

1 solution

hi
please if u have found solution to send arabic text could u please provide it to us
thank u in advance
 
Share this answer
 
Comments
Member 10839604 26-Jun-15 11:07am    
please give us the answer if u got it

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