Article ID: 135398 - Last Review: February 2, 2005 - Revision: 3.4 How to write to the Windows registry by using Windows API callsThis article was previously published under Q135398 On This PageSUMMARY
You can write information directly to the Microsoft Windows 95, Windows NT, or Win32
registry. The Windows registry is the suggested place for 32-bit
applications to store application information. Previous versions of Windows
used .INI files for this purpose. This article gives a brief description of
the Windows registry and the steps necessary to write information to it
programatically.
MORE INFORMATION
The following information comes from Chapter 10 of the Windows NT Resource
Kit:
The registry is analogous to the .INI files used under Windows 3.1, with
each key in the registry similar to a bracketed heading in an .INI file,
and entries under the heading similar to values in the registry.
However, registry keys can contain subkeys, while .INI files do not
support nested headings. Registry values can also consist of executable
code, rather than the simple strings representing values in .INI files.
And individual preferences for multiple users of the same computer can
be stored in the registry, which is not possible with .INI files.
Windows NT registryThe registry is a database of keys and values. The Windows NT registry contains four primary keys:
HKEY_CLASSES_ROOT - File associations and DDE/OLE actions.
HKEY_LOCAL_MACHINE - Global information on the state of the local
computer.
HKEY_USERS - Configuration information about each individual user
of the computer and the DEFAULT entry.
HKEY_CURRENT_USER - specific key within HKEY_USERS that stores
information for the currently active user.Windows 95 registryWindows 95 adds a couple more primary keys:
HKEY_CURRENT_CONFIG - Hardware configuration for devices currently attached
and installed on the computer.
HKEY_DYN_DATA - System Monitor data for performance settings and
statistics.It is good idea for applications to store version specific information in the HKEY_LOCAL_MACHINE\SOFTWARE branch in this format: SOFTWARE\Vendor\product\version Win32s registryThe Win32s registry is limited to only one hive, HKEY_CLASSES_ROOT, and all keys are children of that hive. Any information placed in the Win32s registry should be placed in a child key of HKEY_CLASSES_ROOT instead of HKEY_CLASSES_ROOT (used in Windows 95 and Windows NT).Sample codeThe following code illustrate the ability to create a new registry key by using the Windows API RegCreateKeyEx() and to assign a value to that key by using RegSetValueEx. These 32bit functions are first prototyped using the DECLARE command; then they are available to be called directly. For more information, search for DECLARE - DLL in the Help menu.Note Some constants are declared with definitions taken from the appropriate Microsoft Visual C++ header files. NotesYou can run the Registry Editor to see the registry interface and check that your key was created successfully in the HKEY_LOCAL_MACHINE\SOFTWARE section. In Windows NT, you can find it in the Winnt\System32\regedt32.exe directory. In Windows 95, you can find it in the Win95\Regedit.exe directory.For more information, see the Win32API Help file that is uncluded with Visual FoxPro. Search for RegCreateKeyEx() and RegSetValueEx() as well as the Reg.h and Winnt.h header files to find some of the constant definitions used in the code. To remove these values, you can use the RegDeleteKey() and RegDeleteValue() functions. APPLIES TO
| Article Translations
|
Back to the top
