Error in Quick Report Saving Procedure in Getting Started

Last reviewed: May 21, 1996
Article ID: Q112791
The information in this article applies to:
  • Microsoft FoxPro for Macintosh, version 2.5b

SUMMARY

Step 5 on page 42 of the "Getting Started" manual incorrectly instructs the user regarding how to enter a path and filename in a dialog box in order to save a quick report. By following these instructions, the user will receive an "Invalid path or filename" error when the query is run.

MORE INFORMATION

FoxPro for Macintosh requires that a directory delimiter be the leading character when it is accessing files that reside at a level below the current default folder. For example, the following commands will yield a "File 'tutorial:customer.dbf' does not exist" error:

   SET DEFAULT TO SYS(2004)
   USE tutorial:customer

To avoid this error, change the commands to the following:

   SET DEFAULT TO SYS(2004)
   USE :tutorial:customer


Additional reference words: FoxMac 2.50b docerr
KBCategory: kbprg kbdocerr
KBSubcategory:


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: May 21, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.