REGOBJ.DLL and data/values 
Author Message
 REGOBJ.DLL and data/values

Documentation for regobj.dll is pretty straighforward for dealing with
registry keys, but very obscure regarding manipulating data and values.
It's mentioned only in passing and no details are provided for RegValue or
RegValues.  The object browser doesn't tell me enough either.

Anyone using regobj?  Any examples?

Thanks.

jon

-----
Jonathan Wayne

(please remove the NOSPAM in the return address)



Sun, 20 Aug 2000 03:00:00 GMT  
 REGOBJ.DLL and data/values

Yea, I used it quite extensively for things such as searching through all
subkeys for a specific key and for copying an entire key/subkeys/values to
another cloned key.  I found it really easy to pick up as opposed to the
API.  What are you looking for are what are you trying to do?  I really
can't just post my examples because of size and copyright agreements through
work, but I can answer your questions if you have a specific one.  Let me
know.
jc

Quote:

>Documentation for regobj.dll is pretty straighforward for dealing with
>registry keys, but very obscure regarding manipulating data and values.
>It's mentioned only in passing and no details are provided for RegValue or
>RegValues.  The object browser doesn't tell me enough either.

>Anyone using regobj?  Any examples?

>Thanks.

>jon

>-----
>Jonathan Wayne

>(please remove the NOSPAM in the return address)



Sun, 20 Aug 2000 03:00:00 GMT  
 REGOBJ.DLL and data/values

Well, I figured it out.  Here is an example for anyone that is
interested:

Dim objRegKey As RegKey
Dim objRegVal As RegValues
Set objRegKey =
RegKeyFromString("\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IE4\Setup")
Set objRegVal = objRegKey.Values
Text1.Text = "IE4 Location = " & objRegVal.Item("Path")

Quote:

>Documentation for regobj.dll is pretty straighforward for dealing with
>registry keys, but very obscure regarding manipulating data and values.
>It's mentioned only in passing and no details are provided for RegValue or
>RegValues.  The object browser doesn't tell me enough either.

>Anyone using regobj?  Any examples?

-----
Jonathan Wayne



Sun, 20 Aug 2000 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. REGOBJ.DLL and data/values

2. Reading binary registry values using regobj.dll

3. Adding a value to the registry of a remote PC using REGOBJ.DLL

4. RegObj.dll and Multi-SZ Values

5. RP: Need help - reading/writing binary values using regobj.dll

6. Need help - reading/writing binary values using regobj.dll

7. Creating registry values (using Regobj.dll)

8. RP: Need help - reading/writing binary values using regobj.dll

9. I need documentation on how to use RegObj.dll (registry manip dll)

10. Newbie needs help in reading installed programs from the registry using RegObj.dll

11. Newbie needs help in reading installed programs from the registry using RegObj.dll

12. REGOBJ.DLL & VB.NET

 

 
Powered by phpBB® Forum Software