Hello sir,
I am trying to read sms from my motorokr E6 mobile phone in c# application, but i am not able to do so. The code that i am using is as follows:-

Code:
string portName = cboPort.Text;
lvwMessages.Items.Clear();
Update();
	// Set up the phone and read the messages
ShortMessageCollection messages = null;
try
   {
	this.port = OpenPort(portName);
	Cursor.Current = Cursors.WaitCursor;
...