PRB: CONFIG.FPW w/ Multiple COMMAND= Lines Runs Only Last OneID: Q131309 3.00 WINDOWS
The information in this article applies to:
SYMPTOMSWhen a CONFIG.FPW file contains multiple COMMAND= statements, only the last COMMAND= statement is processed.
CAUSEBoth FoxPro version 2.x and Visual FoxPro process only a single COMMAND= line. The last COMMAND= line is the only one processed.
WORKAROUNDIf it is necessary to have multiple commands execute, revise the COMMAND= statement to call a program (.PRG file) instead of trying to execute each desired command with a separate COMMAND= line.
STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce BehaviorIn the following example, the commands issued in CONFIG.FPW attempt to set the code page and then display the results of that command. Because only one COMMAND= is allowed, the SET CPCOMPILE is not executed. Contents of CONFIG.FPW: codepage = auto COMMAND = SET CPCOMPILE to 437 COMMAND = ?set("cpcompile") To get this to work as intended, revise the CONFIG.FPW to read as follows: codepage=auto COMMAND=DO Setup.prg Additional reference words: 3.00 VFoxWin KBCategory: kbprb KBSubcategory: FxenvConfigfp
|
Last Reviewed: May 13, 1998 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |