Can the Device Name In the "Settings / Device ID" be retrieved?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there and easy way of retrieving the 'Device Name' that is set in Settings ->Device ID window?
 
Get the Registry dll from OpenNetCF and then try this (VB.NET VS2003):

Imports OpenNETCF.Win32

Dim deviceName as String
Dim identKey as RegistryKey

identKey = Registry.LocalMachine.OpenSubKey("Ident")
deviceName = identKey,GetValue("Name").ToString()

Enjoy

Mystic Mong



Borras said:
Is there and easy way of retrieving the 'Device Name' that is set in
Settings ->Device ID window?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top