ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Matrix functions
  • Checking whether a matrix exists
MatExist (Example)
Checking whether a matrix exists
The following code is used to find out whether a matrix exists. The name of the matrix is entered by the user in an edit control (EDT_MatrixName).
// -- Click code on BTN_Exist
// Declare the variables
ResExist is boolean
// Checks whether the matrix exists
ResExist = MatExist(EDT_MatrixName)
IF ResExist = True THEN
Info("The matrix exists")
ELSE
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