T
Timothy Taylor
Below is code that works to get the Device Name.
Where can i find the Owner Name that the owner had filled out?
Another thing... Is there a registry value where i could tell it where the
default place to install CAB files would be a storage card instead of main
memory? ANY other helpful information about registry is much appriciated,
Thank you so much in advanced,
-Tim
Private Sub btnGetID_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnGetDeviceName.Click
Dim devicename As String = Nothing
Dim size As Integer = 128
Dim reg As OpenNETCF.WinAPI.Registry.RegKey = New
OpenNETCF.WinAPI.Registry.RegKey
reg.Open(reg._HKEY_LOCAL_MACHINE, "Ident")
reg.QueryValue(devicename, "Name", size)
reg.Close()
MsgBox("Your Device Name is " & devicename)
End Sub
Where can i find the Owner Name that the owner had filled out?
Another thing... Is there a registry value where i could tell it where the
default place to install CAB files would be a storage card instead of main
memory? ANY other helpful information about registry is much appriciated,
Thank you so much in advanced,
-Tim
Private Sub btnGetID_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnGetDeviceName.Click
Dim devicename As String = Nothing
Dim size As Integer = 128
Dim reg As OpenNETCF.WinAPI.Registry.RegKey = New
OpenNETCF.WinAPI.Registry.RegKey
reg.Open(reg._HKEY_LOCAL_MACHINE, "Ident")
reg.QueryValue(devicename, "Name", size)
reg.Close()
MsgBox("Your Device Name is " & devicename)
End Sub