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?
 
Back
Top