Trying to do some work on an old FoxPro and VB6 legacy application and I've run into a brick wall.
The VB6 part of the application creates three .qpr file which, I understand, are just SQL queries. It then calls an external .fxp file, which is compiled foxpro code. I am not sure exactly what this is - however, I am assuming it to be a compiled version of an identically-named .prg file in the same folder, which contains the following code:
COMPILE "\\Count\Database\Sql_Result.qpr"
WAIT TIMEOUT 1
COMPILE "\\Count\Database\Sql_Total.qpr"
WAIT TIMEOUT 1
COMPILE "\\Count\Database\Sql_Query.qpr"
Those are the .qpr files which the VB6 app generates.
When you run this compilation command, it seems to do something. No error is thrown. Yet I can't see it's done very much.
What is the product of the above compile commands, and how can I find it?