Newbie question: how do I get mobile device info ?

  • Thread starter Thread starter Keven
  • Start date Start date
K

Keven

Hi All,
I'm new to WM. After installation, I first would like to know how to get
some mobile device info? such as storage, path, RAM, ROM, SIM info,
operation system, mounted device, phone number, SMS storage...
I wonder if WM is as easy as PC for info gathering.
Any suggestion, sample code?

Thanks in advance!
 
There is no one class or library that gives you access to the things you
mentioned.

One you you should note, WM is not as easy as the desktop for info
gathering. This is largely to do with the fact that mobile devices are
memory contrained which means the Compact Framework only supports a subset
of the .NET Framework. You'll find yourself calling native APIs a lot on
Windows Mobile using managed code.

One library you should take a look at is the OpenNETCF SDF. Using that
library will save you days of pain, sweat, and tears.

To learn about the things you mentioned, do what Paul suggested, look at the
archives. These things have been talked about so many times and you'll learn
a lot.
 
There is no one class or library that gives you access to the things you
mentioned.

One you you should note, WM is not as easy as the desktop for info
gathering. This is largely to do with the fact that mobile devices are
memory contrained which means the Compact Framework only supports a subset
of the .NET Framework. You'll find yourself calling native APIs a lot on
Windows Mobile using managed code.

One library you should take a look at is the OpenNETCF SDF. Using that
library will save you days of pain, sweat, and tears.

To learn about the things you mentioned, do what Paul suggested, look at the
archives. These things have been talked about so many times and you'll learn
a lot.
 
Back
Top