|
Question : SET PATH TO and Config.FPW
|
|
I use different config.fpw files for different projects. What follows is my sample confiog.fpw for a specific project. MY problem it the SET PATH TO statement. NO matter what I do I cannot seem to change the path. I have changed the path to a blank in the Tools. Options, Fil e Lcoations to blank. I have deleted and let the program rebuild to foxuer tables. All lines seem to execute and work in the following config.fpw except the path statement. I can change the path statement fromt eh command window and in a prg - any ideas on where I am going wrong.
TITLE = "Banque VFP 9 Development CONFIG_Banque.FPW" COMMAND =_SCREEN.FONTNAME = "FoxFont" RESOURCE = ON RESOURCE = "w:\Banque\temp\foxuser" SET STATUS BAR ON SET CLOCK STATUS SET DEFA TO W:\banque SET PATH TO w:\banque;db
|
|
Answer : SET PATH TO and Config.FPW
|
|
From Help:
To enter SET commands in a configuration file Enter SET commands without the SET keyword and with an equal sign. For example, to set a default path type, use this format: DEFAULT = HOME()+"\VFP"
You started off that way then changed to using SET.
|
|
|