|
|
|
|
|
dbgWriteWarningAudit (Function) In french: dbgEcritWarningAudit Writes a custom runtime warning to the dynamic audit. dbgWriteWarningAudit has no effect if the audit is not enabled. // Checks whether a window is opened IF WinStatus("WindowAlwaysOpened") = NotFound THEN dbgWriteWarningAudit(1, "The window named WindowAlwaysOpened was closed") END Syntax
dbgWriteWarningAudit(<Code> [, <Warning Text>])
<Code>: Integer Code of the warning to write. This number (included between 1 and 1000) is defined by the developer. <Warning Text>: Optional character string Explanatory message associated with the warning. Remarks dbgAuditStatus is used to find out whether the audit is enabled in order to: - perform the checks in this case only.
- avoid reducing the performances of the application in standard execution.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|