Article ID: 140293
Article Last Modified on 3/24/2000
a = .T.
b = .T.
c = .F.
IF a AND b) AND c
WAIT WINDOW "This expression must be true."
ENDIF
The IF statement should not evaluate to true because the variable "c" is
false. The wait window box shows up because the closing parenthesis does
not allow FoxPro to see the rest of the statement. If the closing
parenthesis is taken out or if a opening parenthesis is added, then the
wait window box will not appear.
Keywords: kbbug kbfix kbvfp500fix KB140293