Errorcodes.ini

Errorcodes.ini lists the error messages in ReadSoft Invoices that you want to:

  • disable – error messages no longer appear when the respective errors occur.
  • create custom error messages for.

Errorcodes.ini is not installed with ReadSoft Invoices. You must create this file yourself and save it in the INVOICES global path.

Syntax

Every error message that you want to either disable or create a custom message for must have its own entry with the following syntax:

[Error]
 Code=
 Type=
 ID=
 Message=
 ReportError=

Values

  • Code – The code number of the error message.
  • Type – The type number of the error message.
  • ID – The ID number of the error message.
  • Message – The text for the error message.
  • ReportError – 0 to disable the error message. 1 to enable it.

Examples

You get the following error message: (11324, 101, 23).

To disable this message:

[Error]
 Code=11324
 Type=101
 ID=23
 Message=
 ReportError=0

To replace it with a more comprehensible error message:

[Error]
 Code=11324
 Type=101
 ID=23
 Message=There was an error. Please try again.
 ReportError=1