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
Identifies the key found after the specified key in the Windows registry.
Example
Path is string
// Find out the name of primary key
Path = RegistryFirstSubKey()
// Browse all the subkeys
WHILE Path <> ""
Path = RegistryNextKey(Path)
END
// Identify the key found after "HKEY_LOCAL_MACHINE\SYSTEM"
ResNextKey = RegistryNextKey("HKEY_LOCAL_MACHINE\SYSTEM")
Syntax
<Result> = RegistryNextKey([<Access mode>, ] <Key path>)
<Result>: Character string
Full path of next key.
<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.
<Key path>: Character string
Full path of initial key, defined in the Windows registry.
Business / UI classification: Business Logic
Component: wd290std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/26/2022

Send a report | Local help