Question : How can I retrieve OS and Hardware Device Information using Compact Framework in VB only?

How can I retrieve OS and Hardware Device Information using Compact Framework in VB only?

I would like to create a couple parameters to store the OS ver # and a string for the handheld's device info (e.g. Motorola PDT-8100).

What's the best way to pull this information out utilizing VB.NET in Compact Framework 1.1. environment?  I can't seem to find a library or reference dll that I can use to accomplish this.  

Answer : How can I retrieve OS and Hardware Device Information using Compact Framework in VB only?

Not exactly about what you asked but see if this may help a bit.

Use the Environment class in the System namespace. This class provides information for the current environment and platform.
For example, the following code gives you the user domain name, and operating system version.
System.Environment.UserDomainName;
System.Environment.OSVersion.ToString ();

Use the SystemInformation class in the System.Windows.Forms namespace. This class provides information about the operating system. This class has properties. You simply call the property.
For example, this code gives the primary monitor size.

Use the Registry class, which you can find in the Microsoft.Win32 namespace.

Random Solutions  
 
programming4us programming4us