Results 1 to 5 of 5

Thread: Registry

  1. #1

    Thread Starter
    Member
    Join Date
    May 2002
    Location
    USA
    Posts
    33

    Registry

    I am trying to get to this location in registry and my code is just not getting me there, here's my code? any help would be appricated?

    Here is where I am trying to get to:

    HKEY_LOCAL_MACHINE\SOFTWARE\Novell\Location Profiles\Services\{1E6CEEA1-FB73-11CF-BD76-00001B27DA23}\Default\Tab1

    Here is my code:

    Public Function fGetstring1(HKey As Long, strPath As String, strValue As String)
    Dim keyhand As Long
    Dim datatype As Long
    Dim lResult As Long
    Dim strBuf As String
    Dim lDataBufSize As Long
    Dim intZeroPos As Integer
    'Open it
    r = RegOpenKey(HKey, strPath, keyhand)
    'Query the registry
    lResult = RegQueryValueEx(keyhand, strValue, 0&, lValueType, ByVal 0&, lDataBufSize)
    If lValueType = REG_SZ Then
    strBuf = String(lDataBufSize, " ")
    lResult = RegQueryValueEx(keyhand, strValue, 0&, 0&, ByVal strBuf, lDataBufSize)
    If lResult = ERROR_SUCCESS Then
    intZeroPos = InStr(strBuf, Chr$(0))
    If intZeroPos > 0 Then
    fGetstring = Left$(strBuf, intZeroPos - 1)
    Else
    fGetstring = strBuf
    End If
    End If
    End If
    End Function


    Private Sub Form_Load()
    Dim Contex As String

    Contex = fGetstring1(HKEY_LOCAL_MACHINE, "Novell","Location", "Profiles","Services","{1E6CEEA1-FB73-11CF-BD76-00001B27DA23}","Default","Tab1")
    Label10 = Contex
    End Sub

  2. #2
    Megatron
    Guest
    Here's some code that will read/write from the registry
    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")
    67. Print Retval

  3. #3

    Thread Starter
    Member
    Join Date
    May 2002
    Location
    USA
    Posts
    33
    I tried doing this but I return a null value in my label

    Private Sub Command1_Click()
    Dim Retval As String
    Retval = GetSettingEx(HKEY_CURRENT_USER, "SOFTWARE\Novell\Location Profiles\Services\{1E6CEEA1-FB73-11CF-BD76-00001B27DA23}\Default\Tab1", "Context")
    Label1 = Retval
    End Sub

  4. #4
    Megatron
    Guest
    It worked for me.

    Check and make sure that you entered the correct HKEY, path, and value. Also, is it possible that the data is null? (therefore, it's returning null -- which is the actual value)

  5. #5

    Thread Starter
    Member
    Join Date
    May 2002
    Location
    USA
    Posts
    33
    Thanks, I got it figured out.

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