G Guest Apr 16, 2004 #1 Is there and easy way of retrieving the 'Device Name' that is set in Settings ->Device ID window?
W William Ryan eMVP Apr 16, 2004 #2 Check out the GetDeviceID method of OpenNETCF.org -> Core http://www.opennetcf.org/library/ Borras said: Is there and easy way of retrieving the 'Device Name' that is set in Click to expand... Settings ->Device ID window?
Check out the GetDeviceID method of OpenNETCF.org -> Core http://www.opennetcf.org/library/ Borras said: Is there and easy way of retrieving the 'Device Name' that is set in Click to expand... Settings ->Device ID window?
M Mystic Mong Apr 16, 2004 #3 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 Click to expand... 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 Click to expand... Settings ->Device ID window?