How to Prevent "Source Is out of Date" Error Message

Last reviewed: April 29, 1996
Article ID: Q101302
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

SUMMARY

The error message "Source is out of date" indicates that the source program has been changed, but not recompiled or generated. This error can also occur if an "old" version of a program is found in a different subdirectory than the current version.

FoxPro first creates and then runs a compiled version of a program file. This compiled version is called an object file and runs faster than a noncompiled version. This feature cannot be disabled.

To eliminate this error, regenerate the program by opening the source file and choosing Generate from the Program menu.

If the program is part of a project, open the project and select the Build option. Then select the Rebuild Project and the Rebuild All options. Rebuild the project and re-create the application.

If this doesn't work, scan all the subdirectories for occurrences of the source and object code. Delete the extra files and regenerate the program.

MORE INFORMATION

To prevent further occurrences of this error, issue the SET DEVELOPMENT ON command. If you have issued this command and the source code is more current than its compiled object program, FoxPro will recompile the source code before it executes the program, thus ensuring that the most current version of a program is executed.

If the "Source is out of date" error message still occurs, scan all subdirectories for occurrences of the source and object code. Compiled files in FoxPro will have the following extensions:

   .FXP - Compiled version of source code program with .PRG extension.
   .APP - Compiled application program.
   .QPX - Compiled version of source code program with .QPR extension.
   .MPX - Compiled version of source code program with .MPR extension.
   .SPX - Compiled version of source code program with .SPR extension.
   .PRX - Compiled version of source code program with .FMT extension.

You can scan for these extensions by using the Find option in the Filer, or, if you have MS-DOS version 5.0 or later, by typing the following DIR command at the MS-DOS prompt:

   dir <filename> /s

If duplicate filenames are found, remove the incorrect versions of the files, or change the FoxPro SET PATH command to ignore the directories where the duplicate files are found.


Additional reference words: VFoxWin 3.00 FoxDos FoxWin 2.00 2.50 2.50a
errmsg err msg
KBCategory: kbother kberrmsg
KBSubcategory: FxotherGeneral


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.