EXPRCHECK()

From Lianjapedia
Jump to: navigation, search

Purpose

Function to check expression for errors

Syntax

EXPRCHECK(<expC>)

See Also

ERROR(), MESSAGE()

Description

The function EXPRCHECK() evaluates the expression specified in the string <expC>, and returns the appropriate error number, or 0 if the expression evaluated correctly.

Example

function CheckExpr
parameter querystring
if exprcheck(querystring) > 0
    dialog box "Error in Query String: " + message()
    m_ret = .F.
else
    m_ret = .T.
endif
return m_ret