|
|
|
|
|
<Source>.DeactivateAutoFilter (Function) In french: <Source>.DésactiveFiltreAuto
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 <Source>.ActivateAutoFilter. Please note This function is only available for XML Native Access.
Customer.ActivateAutoFilter("*")
Customer.DeactivateAutoFilter(Order)
Order.ReadFirst(OrderID)
WHILE Order.Out() = False
OrdLine.ReadFirst(OrderID)
WHILE OrdLine.Out() = False
OrdLine.ReadNext(OrderID)
END
Order.ReadNext(OrderID)
END
Syntax
<Result> = <Source>.DeactivateAutoFilter(<Data file not to filter>)
<Result>: Boolean - True if the filter is disabled,
- False if an error occurred (data file or item not found).
<Source>: Type corresponding to the specified source Name of the data file used for the browse. <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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|