|
-
February 25th, 2000, 03:39 PM
#1
Registry
i have the functions RegCreateKey and RegSetValue but what about RegGetValue? where can i get that or something that does that?
-
February 25th, 2000, 03:55 PM
#2
Re: Registry
click on the link to download the project files
http://mojoprograms.virtualave.net/registry.zip
-
February 25th, 2000, 03:59 PM
#3
Re: Registry
Public Declare Function RegQueryValue Lib "advapi32.dll" Alias "RegQueryValueA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal lpValue As String, lpcbValue As Long) As Long
--- or ---
Public 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
Either of these will return the value from a registry key.
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
|