DOCERR: Incorrect Syntax in SET KEY Command Example in Help

Last reviewed: November 14, 1995
Article ID: Q139185
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

The Help file for Visual FoxPro has an incorrect code example for the SET KEY command. The RANGE clause is omitted, and the SET ORDER TO command refers to a field that does not exist in the Customer table in the Testdata database.

MORE INFORMATION

Following is the incorrect code example for the SET KEY command:

   CLOSE DATABASES
   USE customer
   SET ORDER TO zip
   SET KEY TO '43000', '43999'

This code example returns an error because there is no Zip field in the Customer table. If the Zip field did exist, the only records visible would be those with a value of 43000 in the Zip field. This is because there is no RANGE clause in the SET KEY command.

Following is the corrected code example:

   CLOSE DATABASES
   USE C:\VFP\SAMPLES\DATA\Testdata!Customer
   INDEX ON postalcode TAG postalcode
   SET ORDER TO postalcode
   SET KEY TO RANGE '40000', '43999'
   BROWSE

Using this code, you will see records that have values between 40000 and 43999 in the Postalcode field.


Additional reference words: 3.00 VFoxWin
KBCategory: kbref kbdocerr
KBSubcategory: FxotherDochelp


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: November 14, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.