Equinox Online Help - Language Reference - A to Z

Home

PickCaptions

Applies to
SyntaxPickCaptions [CaptionExpression1-16]
Action[Statement] Specifies the column captions to display in a pick dialog.
ScopeOnly usable in form methods.
Notes

This statement specifies up to sixteen captions which can be included within a Pick, PickWrite or PickRange dialog. The captions are supplied as strings and are listed with comma separators. This statement should precede any Pick statement.

CategoryPick lists
See Also Pick_PickRecord, PickColumnWidths, PickFields, PickList, PickListSelection, PickRange_PickRecordRange, PickSelection, PickWrite_PickRecordWrite
Example

This example specifies the fields to be displayed within a pick statement followed by the column captions. The Pick dialog allows an individual to be selected for training.

PickFields Surname, Inits, Title, Dept
PickCaptions "Surname", "Initials", "Title", "Department"
Volunteer = Pick(EmployeeNo, ,iSurname)