|
Dictionary()
Returns a dictionary entry value.
Syntax
Dictionary(<cName>) -> xResult
Arguments
<cName> --> is the dictionary entry name
to retrieve.
Returns
The value of the dictionary entry.
Description
This returns the value of the dictionary entry. A
dictionary must be attached to the form before any value can be
returned. The range of acceptable names is determined by the
dictionary attached to the form.
Example
* Return the customer
address line from the
* customer record
dictionary
Dictionary('Cusadr')
cName :=
'Cussub'
Dictionary(cName)
____________________________
Related Topics
Business
Function List
|