ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Registry functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
RegistryListKey (Function)
In french: RegistreListeClé
Lists the subkeys of a registry key.
Example
sListeClé is string 
sListeClé = RegistryListkey("HKEY_CURRENT_USER\Software")
Syntax
<Result> = RegistryListKey([<Access mode>, ] <Path>)
<Result>: Character string
  • List of keys separated by CR (Carriage Return). The keys are the nodes that contain the values. This list has the following format:
    <Key Name 1> + CR + ... + CR + <Key Name N>
  • Empty string ("") if an error occurred or if the key contains no subkey.
<Access mode>: Integer constant
Registry access mode:
registryMode32Forced mode to access the registry as a 32-bit program.
registryMode64Forced mode to access the registry as a 64-bit program.
registryModeAuto
(Default value)
Automatic registry access mode:
  • a 32-bit application running on a 32-bit system manipulates the registry as a 32-bit program.
  • a 32-bit application running on a 64-bit system manipulates the registry from the following branch:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node
  • a 64-bit application running on a 64-bit system manipulates the registry as a 64-bit program.
<Path>: Character string
Full path of key to use.
Business / UI classification: Business Logic
Component: wd300std.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help