Xbasic
OBJECT.RUN_SAVED_QUERY Function
Syntax
.Run_saved_query([c query_name ])
Arguments
- query_name
Optional. The name of a saved query.
Description
Runs a saved query.
The <OBJECT>.RUN_SAVED_QUERY() method applies to:
- Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
- Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)
The <OBJECT>.RUN_SAVED_QUERY() method runs a saved query. If Query_Name is not specified, Alpha Anywhere prompts for a name.
Example
The following example displays the Select Query dialog box.
dim ptr as P ptr = form.load("Invoice") ptr.Run_Saved_Query()
Limitations
Desktop applications only.
See Also