|
-
Feb 19th, 2001, 03:22 PM
#1
Thread Starter
Lively Member
Below is a message I moved from VB General to this group. I hope someone can help me.
======================================
Ok, This is beginning to work. How do I savesettings, getsettings, and deletesettings for subkeys. By that I mean a subkey of a subkey.
Like this:
HKEY_CLASSES_ROOT
MYAPP
DefaultIcon
Default
This should allow me to setup a specific icon in the registery for my particular app. But, I can only go one strPath length. I can get it to put a value at the MYAPP level but not so many levels deep.
Any clues.
-- aatwell
-
Feb 24th, 2001, 11:26 AM
#2
Just use a little API.
Add to a Module
Code:
Declare Function RegCloseKey Lib "advapi32.dll" (ByVal HKEY As Long) As Long
Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Declare Function RegDeleteKey Lib "advapi32.dll" Alias "RegDeleteKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String) As Long
Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal HKEY As Long, ByVal lpValueName As String) As Long
Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal HKEY As Long, ByVal lpSubKey As String, phkResult As Long) As Long
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
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
Public Const HKEY_CLASSES_ROOT = &H80000000
Public Const HKEY_CURRENT_USER = &H80000001
Public Const HKEY_LOCAL_MACHINE = &H80000002
Public Const HKEY_USERS = &H80000003
Public Const HKEY_PERFORMANCE_DATA = &H80000004
Public Const REG_SZ = 1
Function RegQueryStringValue(ByVal HKEY As Long, ByVal strValueName As String)
Dim lResult As Long
Dim lValueType As Long
Dim strBuf As String
Dim lDataBufSize As Long
On Error GoTo 0
lResult = RegQueryValueEx(HKEY, strValueName, 0&, lValueType, ByVal 0&, lDataBufSize)
If lResult = ERROR_SUCCESS Then
If lValueType = REG_SZ Then
strBuf = String(lDataBufSize, " ")
lResult = RegQueryValueEx(HKEY, strValueName, 0&, 0&, ByVal strBuf, lDataBufSize)
If lResult = ERROR_SUCCESS Then
RegQueryStringValue = StripTerminator(strBuf)
End If
End If
End If
End Function
Public Function GetSettingEx(HKEY As Long, sPath As String, sValue As String)
Dim KeyHand&
Dim datatype&
Call RegOpenKey(HKEY, sPath, KeyHand&)
GetSettingEx = RegQueryStringValue(KeyHand&, sValue)
Call RegCloseKey(KeyHand&)
End Function
Function StripTerminator(ByVal strString As String) As String
Dim intZeroPos As Integer
intZeroPos = InStr(strString, Chr$(0))
If intZeroPos > 0 Then
StripTerminator = Left$(strString, intZeroPos - 1)
Else
StripTerminator = strString
End If
End Function
Public Sub SaveSettingEx(HKEY As Long, sPath As String, sValue As String, sData As String)
Dim KeyHand As Long
Call RegCreateKey(HKEY, sPath, KeyHand)
Call RegSetValueEx(KeyHand&, sValue, 0, REG_SZ, ByVal sData, Len(sData))
Call RegCloseKey(KeyHand&)
End Sub
Usage:
Code:
'Save a Value
SaveSettingEx HKEY_CURRENT_USER, "Software\Myapp", "Testing", "Hello"
'Get a value
Retval = GetSettingEx(HKEY_CURRENT_USER, "Software\Myapp", "Testing")
Print Retval
-
Feb 25th, 2001, 09:48 AM
#3
Member
Const
Note that there is one Const you have to declare too:
Public Const ERROR_SUCCESS = 0&
Also there is an Variable: Retval,
you have to declare them too.
Declare them as String ......
-
Feb 26th, 2001, 07:51 AM
#4
Thread Starter
Lively Member
Thank You Megatron
Thank you so much Megatron. The code you gave me worked great. My hats off to you.
- aatwell
-
Feb 26th, 2001, 04:45 PM
#5
Aatwell: Your welcome 
susn: Actually, since ERROR_SUCCESS a constant for 0, you don't need to declare it. And since we are not using Option Explicit, we don't need to declare Retval either.
-
Mar 5th, 2001, 07:52 AM
#6
Thread Starter
Lively Member
HEX Val
How do I add a Hexadecimal Value with the module you gave? I tried to change REG_SZ to REG_DWORD and it makes it a Binary Value and even with that it has problems.
Sincerely,
aatwell
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|