Xbasic
FORM.FIND_EXIT Function
Syntax
.Find_Exit()
Description
The .FIND_EXIT() method cancels the Find by Form mode.
Example
This example finds the second record in the Customer table of AlphaSports that has a lastname value equal to "McDonald".
dim frm as P frm = form.view("Customer Information") frm.find_by_form() frm.lastname.activate() frm.lastname.value = "McDonald" frm.find_run() frm.find_next() frm.find_exit()
Limitations
Desktop applications only.
See Also