|
|
|
|
|
- Enabling and disabling a filter
- Number of possible active filters
- Operating mode in OLE DB
<Source>.ActivateFilter (Function) In french: <Source>.ActiveFiltre
Not available with this kind of connection
Enables the filter that was previously created for the specified data file (view or query). This filter was created by <Source>.Filter and disabled by <Source>.DeactivateFilter. <Source>.ActivateFilter has no effect if no filter was declared. This function can be used with the data files, HFSQL views or queries.
Client.Filtre(Age_Client, 20, 60)
...
Client.DésactiveFiltre()
...
Client.ActiveFiltre()
Client.LitPremier(Age_Client)
WHILE Client.Trouve() = True
TraiteClient2060()
Client.LitSuivant(Age_Client)
END
Syntax
<Result> = <Source>.ActivateFilter()
<Result>: Boolean - True if the filter is enabled,
- False if an error occurred (data file or item not found).
<Source>: Type corresponding to the specified source Name of data file, HFSQL view or query used. Remarks Enabling and disabling a filter Number of possible active filters A single filter can be enabled at a time for a specific data file.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|