Can I use my Android mobile device as a GSM modem from a PC?
I develop applications for .net to send / send SMS messages and so on. Now I would like to connect my Android devices via USB to a computer and use it as a GSM modem to communicate with it.
Here is the Link that I use to create a .NET application for this purpose.
and I get an error here
try { Phone_Name.Text = comm.IdentifyDevice().Manufacturer.ToUpper().ToString(); Phone_Model.Text = comm.IdentifyDevice().Model.ToUpper().ToString(); Revision_Num.Text = comm.IdentifyDevice().Revision.ToUpper().ToString(); Serial_Num.Text = comm.IdentifyDevice().SerialNumber.ToUpper().ToString(); } catch (Exception e50) { MessageBox.Show("Error Retriving COM Port Phone Information", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); }
It says: "Error transmitting information about the COM port of the COM port."
Is there any driver / application / etc for processing it?
Environment: Windows XP / Windows 7 Mobile for testing: Q Mobile Noir A-10
source share