|
SetRegistryKey |
Top Previous Next |
|
Use this function to set a registry key.
Syntax
SetRegistryKey( keyName, keyValue, [subKeyName] )
Parameters
Examples
SetRegistryKey( "HelloWorld", "What a wonderful day." ) PRINT GetRegistryKey( "HelloWorld" )
SetRegistryKey( "Count", 0 )
count = GetRegistryKey( "Count" ) count = count + 1 SetRegistryKey( "Count", count ) PRINT GetRegistryKey( "Count" )
|