DOC: Optimizable Expression Missing Left Parenthesis

ID: Q135319

3.00 WINDOWS kbprg kbdocerr

The information in this article applies to:

  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

The first example of a Rushmore Optimizable expression following the Combining Complex Expressions table on Page 395 in the Developer's Guide is missing a beginning left parenthesis.

The expression currently is:

   FIRSTNAME = 'FRED' AND HIREDATE < {12/30/89}) ;
       OR (LASTNAME = '' AND HIREDATE > {12/30/88})

The expression should be:

   (FIRSTNAME = 'FRED' AND HIREDATE < {12/30/89}) ;
       OR (LASTNAME = '' AND HIREDATE > {12/30/88})

KBCategory: kbprg kbdocerr KBSubcategory: FxotherDochelp Additional reference words: docerr 3.00 VFoxWin
Keywords          : kbdocfix FxotherDochelp 
Version           : 3.00
Platform          : WINDOWS


Last Reviewed: May 13, 1998
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.