README.TXT
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. Using the Win32 API to Access the Registry
  2. SUMMARY
  3. =======
  4. The REGISTRY sample is a simple utility which demonstrates the functions 
  5. needed to access the registry. The sample goes up and down the branches of 
  6. the registry tree, displaying the individual key's data values. The sample 
  7. can also print specified trees to a file named Registry.Txt.
  8. MORE INFORMATION
  9. ================
  10. Usage
  11. -----
  12. Start the sample. A dialog box appears with several edit fields, list boxes,
  13. and buttons. The list box at the center of the dialog box (labeled CHILD 
  14. KEYS at the bottom) always holds the child keys of the current key. 
  15. Initially, it has four entries, representing the predefined key handles of 
  16. the registry: 
  17.     HKEY_LOCAL_MACHINE 
  18.     HKEY_CURRENT_USER 
  19.     HKEY_USERS
  20.     HKEY_CLASSES_ROOT
  21. If you double-click on any of these entries, or highlight one and press the 
  22. Next/Down button; the key that you selected appears in the Key Name edit 
  23. field, and the children of that selected key replace the entries in the 
  24. CHILD KEYS list box. To proceed deeper into the tree, double-click another 
  25. child. To back out of the registry, double-click on the ".." at the top of 
  26. the list box, or press the Back/Up button.
  27. If the current key has values associated with it, the name of the values is 
  28. listed in the right list box (labeled VALUES). If it has no values, VALUES 
  29. is followed by a "0". Once you come to a key that does have values 
  30. associated with it, you can double-click on any of the values in this list 
  31. box. At the bottom of the dialog box are two edit fields: Value: Data Type 
  32. and Value: Data Entry. By double-clicking a value entry, these edit fields 
  33. are filled with the data's type and the data's value. 
  34. If the current key has a class type associated with it, it appears in the 
  35. Class edit field. The ACL edit field is not implemented at this time.