 |
Online Help System
|
 |
Back to Brilliant Database Web-Site |
Write to Support |
Help Index
Data Functions
Returns the value of Field of the
current database software record.
This function is equivalent to the square bracket
operator [].
Examples:
F(|Price|), returns the price field value;
F(|Quantity|)-[Quantity], always returns 0,
Returns the value of Field of a database software record with RecordID.
Examples:
RF(107,|Price|), returns the price field value of a database software record with
ID=107;
Returns the length of Field of the current database software record.
Examples:
If Title field of a database software record is "Record", FLen(|Title|) returns 6 (number of chars);
If Title field of a database software record is "Hello", FLen(|Title|) returns 5.
Special Functions for Script Designer
Note. This function is available only when editing scripts.
This function opens an input dialog and prompts the user to specify its value. For example, when the user clicks the button that changes the value of the Quantity field according to the formula: Quantity=[Quantity]+User(1), the value of the Quantity field is increased by the specified value. If the user clicks Cancel, the calculation of the formula is aborted. The optional parameter DefaultValue
is used to define the default value of the function.
Instead of this function it is recommended to use a script
with preliminary input of data into the variable.
|