ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL functions / 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
Used to check whether a duplicate error occurred.
WINDEV This function can be used when the automatic management of errors is disabled by HOnError. By default, WINDEV includes an automatic management of duplicates.
// Manage a duplicate error
IF HModify(Customer) = False THEN
IF HErrorDuplicates() = True THEN
sItemName is string
sItemName = HErrorInfo(hErrItem)
Error("Duplicate: this record cannot be modified", ...
"Item associated with the error: " + sItemName, ...
"Value of the item: " + {"Customer. " + sItemName})
END
END
Syntax
<Result> = HErrorDuplicates()
<Result>: Boolean
  • True if a duplicate error occurred,
  • False otherwise (no error).
Remarks
  • The management of duplicates is enabled by default. To enable or disable the management of duplicates, use HSetDuplicates.
  • This function replaces HDuplicates, which is kept for compatibility with WINDEV 5.5.
Business / UI classification: Business Logic
Component: wd270hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help