|
|
|
|
|
HErrorDuplicates (Function) In french: HErreurDoublon
Not available with this kind of connection
Used to check whether a duplicate error occurred.
IF HModify(Customer) = False THEN
IF HErrorDuplicates() = True THEN
sItemName is string
sItemName = HErrorInfo(hErrItem)
Error("Duplicate: this record cannot be modified", "Field associated with error: " + sNomRub, ...
"Item value: " + {"Customer." + sNomRub})
END
END
Syntax
<Result> = HErrorDuplicates()
<Result>: Boolean - True if a duplicate error occurs,
- 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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|