ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
HCancelSeek (Function)
In french: HAnnuleRecherche
ODBCNot available with this kind of connection
Cancels the current search criterion. The browse of the data file can continue from the current record, without using any search criterion. The browsed records will not necessarily correspond to the search condition.
Remark: The current record was selected by the search functions (HReadSeekFirst, HReadSeekLast, ...).
Example
// Find the customers from the customer named "Moore"
HReadSeekFirst(Customer, Name, "Moore")
IF HFound(Customer) = True THEN
// Element found: cancel the search
HCancelSeek(Customer, Name)
IF ErrorOccurred = True THEN
Error(HErrorInfo())
RETURN
END
WHILE HOut(Customer) = False
 // Process
 ...
 // Read the next one without using the search criterion
 HReadNext(Customer, Name)
 END
END
Syntax
<Result> = HCancelSeek([<Data file> [, <Item>]])
<Result>: Boolean
  • True if the operation was performed,
  • False if a problem occurs. HError is used to identify the error.
<Data file>: Optional character string
Name of data file (defined in the analysis) for which the search criterion must be canceled. This name can also correspond to a view or a query.
If this name is not specified, HCancelSeek handles the last data file used.
<Item>: Optional character string
Name of the file item for which the search criterion must be canceled.
If this name is not specified, HCancelSeek handles the last item used in the data file.
Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/04/2022

Send a report | Local help