Results 1 to 6 of 6

Thread: Using the registry

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 2001
    Posts
    140

    Using the registry

    I'm trying to delete a value in the registry in my program, but I have a question. The RegDeleteValue key will work but it only has two parameters. The hKey and the Value. If I want to delete a key in say HKEY_CURRENT_USER\Software\MyCompany then how do I put that in hKey? I've tried HKEY_CURRENT_USER & "Software\MyCompany" but that doesn't seem to work. What to do?
    -Nean

  2. #2
    PowerPoster
    Join Date
    Jul 1999
    Posts
    5,923
    Try it like this:
    VB Code:
    1. Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
    2. Private Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal hKey As Long, ByVal lpValueName As String) As Long
    3. Private Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long
    4.  
    5. Const HKEY_CLASSES_ROOT = &H80000000
    6. Const HKEY_CURRENT_USER = &H80000001
    7. Const HKEY_LOCAL_MACHINE = &H80000002
    8. Const HKEY_USERS = &H80000003
    9. Const HKEY_PERFORMANCE_DATA = &H80000004
    10. Const HKEY_CURRENT_CONFIG = &H80000005
    11. Const HKEY_DYN_DATA = &H80000006
    12.  
    13. Private Sub DelSetting(hKey As Long, strPath As String, strValue As String)
    14.  
    15. Dim Ret
    16.  
    17. 'Create a new key
    18. RegCreateKey hKey, strPath, Ret
    19.  
    20. 'Delete the key's value
    21. RegDeleteValue Ret, strValue
    22.  
    23. 'close the key
    24. RegCloseKey Ret
    25.  
    26. End Sub
    27.  
    28. Private Sub Command1_Click()
    29.  
    30. DelSetting HKEY_LOCAL_MACHINE, "MyKey\MySubKey", "MyStringValue"
    31.  
    32. End Sub

  3. #3
    Megatron
    Guest
    VB Code:
    1. Declare Function RegCloseKey Lib "advapi32.dll" (ByVal HKEY As Long) As Long
    2. Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
    3. Declare Function RegDeleteKey Lib "advapi32.dll" Alias "RegDeleteKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String) As Long
    4. Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal HKEY As Long, ByVal lpValueName As String) As Long
    5. Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
    6. Declare Function RegQueryValueEx Lib "advapi32.dll" Alias "RegQueryValueExA" (ByVal HKEY As Long, ByVal lpValueName As String, ByVal lpReserved As Long, lpType As Long, lpData As Any, lpcbData As Long) As Long
    7. Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal HKEY As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long
    8. Public Const HKEY_CLASSES_ROOT = &H80000000
    9. Public Const HKEY_CURRENT_USER = &H80000001
    10. Public Const HKEY_LOCAL_MACHINE = &H80000002
    11. Public Const HKEY_USERS = &H80000003
    12. Public Const HKEY_PERFORMANCE_DATA = &H80000004
    13. Public Const REG_SZ = 1
    14.  
    15. Function RegQueryStringValue(ByVal HKEY As Long, ByVal strValueName As String)
    16.     Dim lResult As Long
    17.     Dim lValueType As Long
    18.     Dim strBuf As String
    19.     Dim lDataBufSize As Long
    20.    
    21.     On Error GoTo 0
    22.     lResult = RegQueryValueEx(HKEY, strValueName, 0&, lValueType, ByVal 0&, lDataBufSize)
    23.     If lResult = ERROR_SUCCESS Then
    24.         If lValueType = REG_SZ Then
    25.             strBuf = String(lDataBufSize, " ")
    26.             lResult = RegQueryValueEx(HKEY, strValueName, 0&, 0&, ByVal strBuf, lDataBufSize)
    27.             If lResult = ERROR_SUCCESS Then
    28.                 RegQueryStringValue = StripTerminator(strBuf)
    29.             End If
    30.         End If
    31.     End If
    32. End Function
    33.  
    34. Public Function GetSettingEx(HKEY As Long, sPath As String, sValue As String)
    35.     Dim KeyHand&
    36.     Dim datatype&
    37.     Call RegOpenKey(HKEY, sPath, KeyHand&)
    38.     GetSettingEx = RegQueryStringValue(KeyHand&, sValue)
    39.     Call RegCloseKey(KeyHand&)
    40. End Function
    41.  
    42. Function StripTerminator(ByVal strString As String) As String
    43.     Dim intZeroPos As Integer
    44.  
    45.     intZeroPos = InStr(strString, Chr$(0))
    46.     If intZeroPos > 0 Then
    47.         StripTerminator = Left$(strString, intZeroPos - 1)
    48.     Else
    49.         StripTerminator = strString
    50.     End If
    51. End Function
    52.  
    53. Public Sub SaveSettingEx(HKEY As Long, sPath As String, sValue As String, sData As String)
    54.     Dim KeyHand As Long
    55.     Call RegCreateKey(HKEY, sPath, KeyHand)
    56.     Call RegSetValueEx(KeyHand&, sValue, 0, REG_SZ, ByVal sData, Len(sData))
    57.     Call RegCloseKey(KeyHand&)
    58. End Sub
    59.  
    60.  
    61. 'Save a Value to the Registry
    62. SaveSettingEx HKEY_CURRENT_USER, "Software\Myapp", "Testing", "Hello"
    63.  
    64.  
    65. 'Get a value from the Registry
    66. Retval = GetSettingEx(HKEY_CURRENT_USER, "Software\Myapp", "Testing")

  4. #4
    PowerPoster
    Join Date
    Jul 1999
    Posts
    5,923
    That's lovely megatron, but he only wanted to delete a value, nothing else

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Feb 2001
    Posts
    140
    Thanks alot, I've managed. I was wondering where to get a list of all the data types acceptable for the registry. Like how REG_SZ = 1 and I think I saw somewhere REG_BINARY = 3. Where's the rest of them? Thanks
    -Nean

  6. #6
    PowerPoster
    Join Date
    Jul 1999
    Posts
    5,923
    Here are some...
    VB Code:
    1. Public Const REG_SZ = 1                         ' Unicode nul terminated string
    2. Public Const REG_BINARY = 3                     ' Free form binary
    3. Public Const REG_DWORD = 4                      ' 32-bit number
    4. Public Const ERROR_SUCCESS = 0&

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width