FORMULA LANGUAGE


Examples: @Prompt
1. [Ok] displays an informational message; the user clicks OK to close the dialog box. Use this style when you want to inform the user about something, without receiving anything back except an acknowledgement.
2. This variation displays the contents of a multi-value item by imploding it.
3. [YesNo] displays a warning, and gives the user a chance to proceed or cancel the operation. If the user selects Yes the numeric value 1 is returned. If the user selects No the numeric value 0 is returned.
4. [YesNoCancel] also displays a warning, and gives the user a chance to select Yes, No, or Cancel. If the user selects Cancel, the value -1 is returned.
5. [OkCancelEdit] prompts the user to enter his or her name, which is returned as a text string. The name defaults to the current user's Notes/Domino user name, which is calculated using @UserName. If the user selects Cancel, Lotus Notes/Domino cancels the formula evaluation. Note that @Prompt([OkCancelEdit]) returns only the first 254 characters of the text entered.
6. [OkCancelList] displays a list box with database names (sorted alphabetically), prompts the user to select a database, and returns that database's name as a text string for use in a subsequent operation. If the user selects Cancel, Lotus Notes/Domino cancels the formula evaluation.
7. [OkCancelCombo] displays a dialog box similar to example 5, except that a drop-down list is used, so that initially only the default value is displayed. The user clicks the down arrow on the box to display the rest of the list. As in example 5, the user must select one of the listed values; by default, Schedule is selected. This function returns the user's selection. If the user selects Cancel, Lotus Notes/Domino cancels the formula evaluation.
8. [OkCancelEditCombo] is similar to example 6, except here the user can edit the text box and type in any database name; this way, the user is not limited to the selections in the list. This function returns the user's selection or entry. If the user selects Cancel, Lotus Notes/Domino cancels the formula evaluation.
9. [OkCancelListMult] displays a list of names, from which the user can select one or more (Mary Tsen appears as the default selection). This function returns the user's selection(s). If the user selects Cancel, Lotus Notes/Domino cancels the formula evaluation.
10. [Password] displays a dialog box where the user can enter a password. Lotus Notes/Domino does not display the password on the screen. This function returns the password.
11. [LocalBrowse] provides controls and displays that allow you to browse and select a name from the local file system. This example opens the Notes/Domino database file the user selects from the local browser. The "1" restricts the initial display to .nsf files.
12. This code, in a form hotspot button, displays the Choose Database dialog box then sets field values on the document (which must be in edit mode) based on the result.
See Also