FIX: Missing Closing Parenthesis Acts Like a CommentLast reviewed: October 29, 1997Article ID: Q140293 |
3.00
WINDOWS
kbprg kbbuglist kbfixlist
The information in this article applies to:
SYMPTOMSWhen you use the parenthesis symbol to enclose conditions to be evaluated and leave off the leading parenthesis, the closing parenthesis acts like a comment marker as if it were a double ampersand (&&). Any code that follows the closing parenthesis is ignored when the program is executed. Visual FoxPro should give an error message when the opening parenthesis is missing, but in this case it does not.
RESOLUTIONMake sure that the closing parenthesis has a matching opening parenthesis.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0 for Windows.
MORE INFORMATION
Steps to Reproduce ProblemPlace the following code in a .prg file:
a = .T. b = .T. c = .F. IF a AND b) AND c WAIT WINDOW "This expression must be true." ENDIFThe 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.
|
KBCategory: kbprg kbbuglist kbfixlist
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |