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
Checks whether the current record corresponds to the current filter or search.
<Source>.Found returns True if the current record exists and if one of the following conditions is met:
  • the data file browse is filtered and the current record corresponds to the filter conditions,
  • the data file browse was started by a search and the current record corresponds to the sought value,
  • the data file browse is neither filtered nor started by a search.
When an operation causes an exit from the filter or data file (i.e. when <Source>.Out returns True), <Source>.Found returns False.
Note: Function <Source>.Found corresponds to variable H.Trouve.
Example
Customer.ReadSeekFirst(Name, "Moore")
IF Customer.Found() = True THEN
	Info("Record found")
ELSE
	Error("No record found")
END
Syntax
<Result> = <Source>.Find()
<Result>: Boolean
  • True if the current record corresponds to the filter or to the search,
  • False otherwise. HError returns more details about the problem.
<Source>: Type corresponding to the specified source
Name of the data file, view or query used.
Component: wd300hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 12/07/2024

Send a report | Local help