Equinox Online Help - Language Reference - A to Z

Home

SetFindValues

Applies to
SyntaxSetFindValues [Text1Expression] [, Text2Expression] [, Text3Expression] [, Text4Expression]
Action[Statement] Sets the default search text on a form's Find dialog.
ScopeUsable anywhere.
Notes

This statement lets you pre-set the search criteria for the Find dialog. Up to four arguments can be supplied using Text1Expression to Text4Expression, corresponding to the four components available for constructing compound indexes.

CategoryRecord data entry
See Also Zoom, Find, FindText, GetFindValues, IsInsertMode, RestoreRecord, SaveRecord, SetInsertMode, StartEdit, StartInsert, UpdateDisplay
Example

This example sets up the Find dialog to search a hotel database for the first empty room, if there is one.

SetIndex RoomIX
PopupTitle "Room Search"
FindText "Availability"
SetFindValues "Unoccupied"
Find