User Tools

Site Tools


getregsubkeys_collect_registry_sub_key_names_.htm
Navigation:  Language Reference > 13 - Built-in Functions >====== GETREGSUBKEYS (Collect Windows registry sub-key names) ====== Previous pageReturn to chapter overviewNext page

GETREGSUBKEYS(root, keyName, subkeyQueue)

blk2blue.jpg

GETREGSUBKEYS Collect names of sub-keys for a given registry key.
root A LONG integer, variable or expression that contains the root section of the registry from which to obtain the value. Valid values for this are defined in equates.clw and are as follows:
REG_CLASSES_ROOT
REG_CURRENT_USER
REG_LOCAL_MACHINE
REG_USERS
REG_PERFORMANCE_DATA
REG_CURRENT_CONFIG
REG_DYN_DATA
keyName A STRING constant, variable or expression that contains the key name of the key whose value is to be queried. This may contain a path separated by backslash '\' characters.
subkeyQueue A reference to a QUEUE that holds the values of the sub-keys keyName.

The GETREGSUBKEYS function returns the names of all sub-keys for a given registry key to a referenced QUEUE. If the requested entry does not exist, an empty string is returned.

Vista and Clarion Built-in Registry Functions

On Vista, a (non-elevated) app can READ the registry key HKLM (local machine) with no problems, but as far as writing to the Registry it needs to use HKCU (current user).

If you code sign your executable and run with elevated privileges then you can write to HKLM.

Example:

 PROGRAM

 MAP

 END

 INCLUDE('EQUATES')

MyQueue             QUEUE,PRE(my)

RegValues               STRING(40)

                   END

 CODE

 

  GETREGSUBKEYS(REG_CURRENT_USER,'Control Panel\PowerCfg',MyQueue)    

       

  LOOP I# = 1 TO RECORDS(MyQueue)

    GET(MyQueue,I#)        

    MESSAGE(my:RegValues)

  END

See Also: GETREG, GETREGVALUES

getregsubkeys_collect_registry_sub_key_names_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1