Microsoft KB Archive/136187

From BetaArchive Wiki
Knowledge Base


DOC: Missing ALL Clause on Page 46 of Developer's Guide

Article ID: 136187

Article Last Modified on 2/15/2000



APPLIES TO

  • Microsoft Visual FoxPro 3.0 Standard Edition



This article was previously published under Q136187

SUMMARY

The 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 < 500


This documentation error has been fixed in Visual FoxPro 5.0 for Windows.

MORE INFORMATION

The REPLACE command needs the ALL scope, so that the line of code reads:

   REPLACE ALL alert WITH "low balance" FOR total < 500
                


Additional query words: docerr VFoxWin 5.00

Keywords: kbdocfix KB136187