Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compiling EXE's in Foxpro2.5 for multiple APP or PJX files 2

Status
Not open for further replies.

trikertom

Technical User
Aug 14, 2006
5
US
I am not a FOx programmer. I am a strong Clipper or weak C+ programmer. Several years ago my best friend of 30 years died. He had written a software package to run his company, now the current owner is panicky. The entire computer system is setup with the old LANtastic cards., Most of the operating systems are DOS or WIN 98SE. Some of the computers date back 15 years. He needs changes made desparately, and needs the program to run on a more modern operating system.
It appears the EXE was built from multiple APP or PJX files. I figured out how to make these files after several weeks. However, how do I compile these multiple files to one EXE?
The code needs to be rewritten in a more modern language but immediately it needs changes NOW. ANYONE?
 
The exe cannot be built from multiple PJX files.

There must be 1 main project file that contains references to all needed parts.

If the application has several different parts in it - either .APP or even .EXE then those files can be included

When you open a project file:
modify project xyz

the 3rd option is Add.
With this option you can add all kinds of files to the final EXE that is going to be build.

Is this enough information for you, otherwise ask specific questions.

Rob.
 
Probably the first thing to confirm is if the copy of Foxpro 2.5 that you are using includes the Distribution Kit.

If you have that you are in luck.
If not, then you will not be able to compile your program into an EXE file. And due to the age of the Foxpro version you are using, you will have difficulty finding the "kit".

Let's assume that your Foxpro includes the Distribution Kit.
Then, as Rob says above, you will need to open the Project
Code:
MODIFY PROJECT <the pjx filename>
When the Project is Open you will be able to see within the Project window all of its component application files.

If the Project file is missing or corrupted, you should be able to create a New project like Rob describes above.

In order to create the EXE file, use the Build option (not available without the Distribution Kit).

Good Luck,


JRB-Bldr
VisionQuest Consulting
Business Analyst & CIO Consulting Services
CIOServices@yahoo.com
 
I do have the distribution kit. I have his entire computer. The light come on with your suggestions. I had been in modify project and saw the program files. The part I did not catch was there were also several 'application' files in there also. I appreciate it because the help files were woefully Microsoft :) He apparently was doing three or four seperate modules and compiling into one huge program. Thanks a million.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top