PRB: CLEAR SCREENS Err: Unrecognized Phrase/Keyword in Command

Last reviewed: June 28, 1995
Article ID: Q113959
The information in this article applies to:
  • Microsoft FoxPro for Windows, version 2.6
  • Microsoft FoxPro for MS-DOS, version 2.6

SYMPTOMS

The CLEAR SCREENS command produces an "Unrecognized phrase/keyword in command" error message.

CAUSE

FoxPro does not support this dBASE IV command.

RESOLUTION

The RELEASE command can be used to release a variable that is used to store a screen image. For example, instead of using these commands

   SAVE SCREEN TO test
   CLEAR SCREENS

you can use these commands:

   SAVE SCREEN TO test
   RELEASE test

The RELEASE command will release the memory variable.

MORE INFORMATION

In dBASE IV, the CLEAR SCREENS command releases memory used by screens that are saved to memory variables with the SAVE SCREEN TO command. This command is not supported in FoxPro regardless of whether the SET COMPATIBLE DB4 command is issued.


Additional reference words: FoxDos FoxWin 2.60 differences errmsg err msg
KBCategory: kbprg kberrmsg kbprb
KBSubcategory: FxinteropDbase


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: June 28, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.