PRB: Conditional IF Incorrectly Evaluates as TrueLast reviewed: June 27, 1995Article ID: Q114789 |
The information in this article applies to:
SYMPTOMSIf you use the following conditional statement, which has a mistyped AND condition, the latter parts of the conditional are treated as comments, which causes the overall expression to evaluate erroneously:
IF X=.T. AMD Y=.T.This line will evaluate as true even if Y=.F.
CAUSEFoxPro looks at "AMD", decides it is not "AND" or "OR", and assumes it is the beginning of a comment. It therefore stops evaluating the expression, which makes FoxPro see the expression as:
IF X=.T. &&AMD Y=.T. MORE INFORMATIONFoxPro allows comments without "&&" at the end of some commands. This behavior is not expected to change in the future. To find typing errors in FoxPro for Windows, you can use the spelling checker by choosing Spelling from the Text menu.
|
Additional reference words: FoxMac FoxDos FoxWin 2.00 2.50 2.50a 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |