|
|
|
|
Function
|
What it Does
|
Comments
|
|
DeleteSetting appname, section[, key]
|
Deletes an application's section or key setting entries from the System Registry.
|
appname specifies the application name, and section is the section name to be deleted. If key(optional) is used, only that key (and not the whole section) will be deleted.
|
|
GetAllSetting (appname, section)
|
Returns a list of key settings and their values from an application and section in the System Registry.
|
appname is the application name, and sectionis the section name
|
|
GetSetting (appname, section, _
key[, default])
|
Returns a single key setting from an application entry and section in the System Registry
|
appname is the application name, and section is the section name.If no value is set for the key setting specified, then the optional default value can be returned. If default is omitted, then the default returned is a zero-length string.
|
|
SaveSetting (appname, section, key, _
setting)
|
Saves or creates an application entry, section, key setting, and value in the System Registry.
|
appname is the application name, section is the section name, key is the key setting and setting is the setting value
|
|
Go Back to Top
Return to the Visual Basic 6 Commands & Functions Page
|