PRB: "Variable 'X' not found" in a Visual FoxPro Menu

ID: Q167191


The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 6.0


SYMPTOMS

When running a menu that uses a constant defined in a header file, the error message "Variable 'x' not found" is returned if the #include statement is in a program that calls the menu.


CAUSE

The constant must be available at menu generation time.


RESOLUTION

The following steps demonstrate adding a #include statement to the menu setup code:

  1. Open your "Menu.mnx" file in design mode, where "Menu.mnx" is the name of your menu file.


  2. Select "General Options" from the View menu.


  3. Select the "Setup" check box.


  4. Click OK.


  5. Add your #include statement to the setup code area, for example:
    
          #INCLUDE "C:\VFP\Foxpro.h" 


  6. Close the Setup Code window.


  7. Your variables will be available to the menu after you generate and run your menu file.


The above steps resolve the "Variable 'X' not found" error message described above.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Use any constant, such as Color_Dark_Red from the "Foxpro.h" header file, in your menu.


  2. Generate your menu.


Even if header is defined correctly in your main program, you will receive "Variable 'Color_Dark_Red' not found" when the menu is generated.


REFERENCES

For more information about "Variable not found," please see the following article in the Microsoft Knowledge Base:

Q156672 PRB: "Variable <variable> is not found" Using #INCLUDE Files

Additional query words:

Keywords : kbprg kbtshoot kbVFp kbVFp300 kbVFp300b kbVFp500 kbVFp600 FxprgGeneral
Version : WINDOWS:3.0,3.0b,5.0,6.0
Platform : WINDOWS
Issue type : kbprb


Last Reviewed: December 10, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.