Xbasic
FORM.FIND_RUN Function
Syntax
.Find_Run()
Description
The .FIND_RUN() method runs the find specified in the Find_by_Form window.
Example
This example finds the first 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_exit()Limitations
Desktop applications only.
See Also