Application.SaveValue

Application.SaveValue ( 

string Section,

string Key,

string Value )

Description

Saves a value to the user's system so it can be retrieved later with an Application.LoadValue action.

Parameters

Section

(string) The name of the "section" that the value will be saved in.

Note: If the section doesn't exist it will be created automatically.

Key

(string) The name of the "key" that will identify the value.

Note: If a key by that name already exists, the new value will overwrite the old one.

Value

(string) The value to save.

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

Availability

Standard

Pro

See also:  Related Actions