I found some code on net that allow me to read/send SMS from a Mobile via bluetooth connection. But using USB EDGE modem I can't either send or read SMS. I just can connect to that modem's port.
My Code is:
string mobileNumber = txt_number.Text;
string smMessage = txt_message.Text;
AutoResetEvent receiveNow;
String command="";
SerialPort port = new SerialPort();
port.PortName = cmb_port.Text;
port.Open();
command = "AT+CMGF=1";
port.WriteLine(command);
command = "AT+CMGS=\"" + mobileNumber + "\"";
port.WriteLine(command);
command = smMessage + char.ConvertFromUtf32(26) + "\r";
port.WriteLine(command);
MessageBox.Show("Send Success");
It works on some device.