<OBJECT>.QUICK_SEARCHEXCL()
Syntax
Record_Count as N = <OBJECT>.QUICK_SEARCHEXCL()
|
Argument |
Description |
|
Record_Count |
The number of records found by the query. |
Description
The <OBJECT>.QUICK_SEARCHEXCL() 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>.QUICK_SEARCHEXCL() method performs the opposite action as the Quick Filter command and finds all records that do NOT match the value in the current control.
Supported By
Alpha Five Version 5 and Above
Limitations
Desktop applications only.
Example
With the cursor on the lastname field of the Customer form of AlphaSports, the following script does a quick search excluding using its current value.
|
dim ptr as P ptr = form.view("Customer Information") ptr.Quick_Searchexcl() |
See Also