ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Registry functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
RegistryListKey (Function)
In french: RegistreListeClé
Lists the subkeys of a registry key.
Example
sKeyList is string
sKeyList = 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:
    <Name of Key 1> + CR + ... + CR + <Name of Key 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: wd290std.dll
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/30/2022

Send a report | Local help