AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de valores numéricos / Funciones de matrices
  • 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
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

Señalar un error o enviar una sugerencia | Ayuda local