PRB: "No PARAMETER Statement Found" in .EXE FileLast reviewed: February 23, 1998Article ID: Q111059 |
2.50 2.50a 2.50b | 2.00 2.50 2.50a 2.50b
WINDOWS | MS-DOSkbprg kberrmsg kbprb The information in this article applies to:
SYMPTOMSWhen you are running an .exe file built with FoxPro, the following error message occurs when you try to execute a cross-tabulation:
No PARAMETER statement found.NOTE: In FoxPro 2.0 for MS-DOS, the error that occurs is:
File '' does notexist. CAUSEThe cross-tabulation program is being executed by referencing a variable that has an incorrect value. For example,
DO (_genxtab) WITH "Query"when the variable _genxtab has not been initialized.
RESOLUTIONSet the value of the variable being used before issuing the DO command. For example,
_genxtab="GENXTAB.PRG" DO (_genxtab) WITH "Query" MORE INFORMATION
Steps to Reproduce Behavior
|
Additional reference words: FoxDos FoxWin 2.00 2.50 2.50a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |