Registry_SetTxtBool

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > Registry >

Registry_SetTxtBool

 

Description

 

Set a text registry value evaluating %TRUE or not %TRUE the passed value. In both cases a string is stored.

 

Syntax

 

n = Registry_SetTxtBool(HKEY, MainKey, KeyName, nValue)

 

Returns

 

Number. %TRUE in case of success.

 

Parameters

 

Name

Type

Optional

Meaning

HKEY

String

No

Can be one of the following strings:

"HKEYCR"        (%HKEY_CLASSES_ROOT)

"HKEYCU"        (%HKEY_CURRENT_USER)

"HKEYLM"        (%HKEY_LOCAL_MACHINE)

"HKEYU"        (%HKEY_USERS)

"HKEYCC"        (%HKEY_CURRENT_CONFIG)

MainKey

String

No

The requested key path

KeyName

String

No

Name of the value to query

nValue

Number

No

Value to evaluate.

If Value evaluates to %TRUE, "YES" string will be stored.

If Value evaluate to a value different from %TRUE, "NO" will be stored

 

Remarks

 

Restrictions

 

See also

 

Examples