read mac address from wince 5.0 using c#
how to read wince 5.0 device mac address or teminal no using c# windows application
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant KumarPosted Sep 24, 2012, 8:40 AM
You can use our MDSDK to access this type of information:
NameValueCollection sysInfo = PsionTeklogix.SystemPTX.SystemInformation.SystemInformationList;
IEnumerator myEnumerator = sysInfo.GetEnumerator();
foreach (String s in sysInfo.AllKeys)
{
String line = s + ": " + sysInfo[ s ];
listBox1.Items.Add(line);
}
The system information namespace lists what's in the System Properties applet (About Device). From this list you can glean the MAC address of the device you want.
http://community.psion.com/discussions/f/160/t/2351.aspx