ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / HFSQL functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
HDeactivateAutoFilter (Function)
In french: HDésactiveFiltreAuto
Native Connectors (Native Accesses)Available only with this kind of connection
Disables an automatic filter on the linked data files when browsing an XML file. This filter was enabled by HActivateAutoFilter.
Please note This function is only available for XML Native Access.
Example
// Activation de tous les filtres auto possibles du fichier de données Client
HActivateAutoFilter(Client, "*")
// sauf entre Client et Commande
HDeactivateAutoFilter(Client, Commande)

/////////////////////////////

// Parcours des commandes
HReadFirst(Commande, IDCommande)
WHILE HOut() = False
	// Parcours les lignes de commande de la commande en cours
	HReadFirst(LigneCde, IDCommande)
	WHILE HOut() = False
		HReadNext(LigneCde, IDCommande)
	END
	// Commande suivante
	HReadNext(Commande, IDCommande)
END
Syntax
<Result> = HDeactivateAutoFilter(<Browse data file> , <Data file not to filter>)
<Result>: Boolean
  • True if the filter is disabled,
  • False if an error occurred (data file or item not found).
<Browse data file>: Character string
  • Name of the data file used for the browse.
  • "*" to disable all the automatic filters.
If <Browse data file> and <Data file not to filter> correspond to "*", <Result> is set to True and no filter is disabled.
<Data file not to filter>: Character string
  • Name of the data file to not filter when positioned in the browse data file.
  • "*" to disable all the automatic filters.
If <Browse data file> and <Data file not to filter> correspond to "*", <Result> is set to True and no filter is disabled.
Component: wd300hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help