hi all
i try to make an priject connect to GSM Modem and use it for send and recive sms and making call and use USSD Codes - i works when i recive english sms (the reply of USSD Code) and show the result in lable - but if the USSD replay is arabic it givers
me only numbers and i can't get the msg ? i try to use it UTF-8 but not working - so please can any one helpe me and fixe my code ?
and in english msg i get some letters that i dont need like " 2, c " and i don't know why i got them so i use Remove to remove the string i don't need ( if other way will help me better i hope that tell me what is ? )
Send USSD Code:
port.Close();
port.BaudRate = 921600;
port.PortName = com1.Text;
port.Parity = Parity.None;
port.DataBits = 8;
port.StopBits = StopBits.One;
por ...
Go to the complete details ...