DOC: Missing ALL Clause on Page 46 of Developer's GuideLast reviewed: January 8, 1997Article ID: Q136187 |
The information in this article applies to:
SUMMARYThe Developer's Guide, Chapter 2, "Overview of the language," under For Clauses, on page 46 gives the following incorrect information:
The following example stores low balance in the alert field of all records that contain less than 500 in the total field. REPLACE alert WITH "low balance" FOR total < 500This documentation error has been fixed in Visual FoxPro 5.0 for Windows.
MORE INFORMATIONThe REPLACE command needs the ALL scope, so that the line of code reads:
REPLACE ALL alert WITH "low balance" FOR total < 500 |
KBCategory: kbref kbdocerr kbdocfix
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |