I'm trying to show sms messages in modem (I use my phone as modem), Port connect successfully by using AT commands and I can Import the number and date but the body of message show as number. this is my code :
port.Write("AT" + System.Environment.NewLine);
Thread.Sleep(1000);
port.WriteLine("AT+CMGF=1" + System.Environment.NewLine);
Thread.Sleep(1000);
port.WriteLine("AT+CMGL=\"ALL\"\r" + System.Environment.NewLine); //("AT+CMGL=\"REC UNREAD\"\r");
Thread.Sleep(3000);
MessageBox.Show(port.ReadExisting());