AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones del registro
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
Versión mínima requerida
  • Versión 17
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 30/08/2022

Señalar un error o enviar una sugerencia | Ayuda local