Results 1 to 2 of 2

Thread: registry

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Nov 2001
    Posts
    154

    registry

    What i want to do is find a value in the registry using API and turn it into a string or variable.
    The value is in
    HKEY_CURRENT_USER\Software\Valve and name of value is 11
    how would i go about searching for the value and then returning it and then msgbox "found" or msgbox "not found"
    thanks

  2. #2
    Megatron
    Guest
    Add to a Module
    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

    Usage:
    VB Code:
    1. 'Save a Value to the Registry
    2. SaveSettingEx HKEY_CURRENT_USER, "Software\Myapp", "Testing", "Hello"
    3.  
    4. 'Get a value from the Registry
    5. Retval = GetSettingEx(HKEY_CURRENT_USER, "Software\Myapp", "Testing")
    6. Print Retval

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