ERR: "Feature Not Available"; MODIFY/CREATE QUERY in .EXE File

Last reviewed: April 29, 1996
Article ID: Q98753
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0
  • Microsoft FoxPro for Windows, versions 2.5 2.5a
  • Microsoft FoxPro for MS-DOS, versions 2.0, 2.5, 2.5a

SYMPTOMS

The MODIFY QUERY and CREATE QUERY commands return "Feature not available" error messages when called from an executable file built with the FoxPro Distribution Kit.

CAUSE

The MODIFY QUERY and CREATE QUERY commands are intended only for use in the interactive development environment of FoxPro. End users must possess the full product in order to access these commands.

RESOLUTION

To work around this limitation, use the RQBE window to construct a SELECT- SQL statement, then copy the results from the See SQL window and paste them into a .PRG file. Using this method, you can also create a RQBE-like screen/window that contains variables that can be used in the SELECT-SQL statement.

The following sample code demonstrates this workaround:

   dbfname = space(12)
   value = space(12)
   fieldname = space(12)

   @ 5,5 SAY "Enter the database name: " GET dbfname
   @ 7,5 SAY "Enter the fieldname: " GET fieldname
   @ 9,5 SAY "Enter the value: " GET value
   READ

   fieldname = ALLTRIM(fieldname)
   dbfname = ALLTRIM(dbfname)
   value = ALLTRIM(value)

   SELECT &fieldname from &dbfname ; && Macro expansion is OK here.
     WHERE &fieldname = (value) ; && Parentheses ARE required here.
     INTO cursor query
   BROWSE


Additional reference words: VFoxWin 3.00 FoxDos FoxWin SQL SELECT MODI
QUERY 2.00 2.50
2.50a errmsg err msg relational query by example dk
KBCategory: kbother kberrmsg kbcode
KBSubcategory: FxtoolDk


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