ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Matrix functions
  • Displaying an error message
MatError (Example)
Displaying an error message
The following code is used to display the last error that occurred on a matrix. This procedure can be called once a Matrix function has been used.
// -- Local procedure ErrorType
PROCEDURE ErrorType(MatrixName)
// Declare the variable
ResError is int
// Error that occurred on the matrix?
ResError = MatError(MatrixName)
// Display the error message
IF ResError <> 0 THEN
Error(ErrorInfo(errMessage))
END
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