DOC: DBSETPROP Example Contains Extra Zero

Last reviewed: January 8, 1997
Article ID: Q135516
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

Page 216 in the Developer's Guide contains a code example to create a maxordamt field with a default value of 1000. However, the DBSETPROP command uses the value of 10,000 instead of 1000.

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

MORE INFORMATION

To create a maxordamt field with a default value of 1000, use the following code instead of the example code on Page 216 in the Developer's Guide:

   OPEN DATABASE testdata
   USE VIEW customer_view
   ?DBSETPROP ('Customer_view.maxordamt', 'Field1', 'DefaultValue', 1000)


KBCategory: kbprg kbdocerr kbdocfix
KBSubcategory: FxotherDochelp
Additional reference words: docerr 3.00 VFoxWin 5.00


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: January 8, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.