<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Registry > Registry_GetDWord |
Description
Get a DWord registry value.
Syntax
n = Registry_GetDWord(HKEY, MainKey, KeyName)
Returns
Number.
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 |
Remarks
Restrictions
See also
Examples
USES "Registry"
DIM thinAirGrid AS DWord
thinAirGrid = Registry_GetDWord("HKEYLM", "Software\thinBasic\thinAir", "Grid")
MsgBox 0, IIF$(thinAirGrid = 1, "Grid is active", "Grid is not active")