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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is it possible for one project to build 2 exe program? 1

Status
Not open for further replies.

shelbytll

Programmer
Dec 7, 2001
135
SG
Is it possible for one project to build 2 exe program?

2. when I run the exe program, it normally have the "Microsoft Visual Foxpro" header. Not the header of the form but the header of the application. How do I change that?

3.And the exe program also have menu like "File, Edit, Window, Help". How do I remove that? I am a clever newbie...[peace]
 
Is it possible for one project to build 2 exe program?

Yes, when you go to build your exe, you on the steps is to name your executable (at step #2), the default is that it will take on the name of your project, but you could name it something else. So the first time keep the default name, and the second, change the name.

2. when I run the exe program, it normally have the "Microsoft Visual Foxpro" header. Not the header of the form but the header of the application. How do I change that?

1. In you main program try using :
Code:
_screen.caption ="" && Or whatever you want
OR
2. I you are using a config.fpw file, add the line:
TITLE = MYTITLE && No quotes

3.And the exe program also have menu like "File, Edit, Window, Help". How do I remove that?

In you main program use:
Code:
SET SYSMENU TO





Mike Gagnon
 
Hi !!!
Why you want to have 2 exe?
I create these when I want to have 2 version for one project (but with diffrent 1 prg for example). I named these with different names.
Monika Kind regards to you all from Warsaw !!!!!
 
If I understand correctly you wish to make to exe files when building your project ?

In esence you can only build on exe from 1 project. But if you are a power user/programmer, you could start a second build process for another project, using the project hook (see the MSDN for further reading).

In this case you would be building 2 projects in the same run and end up with 2 exe files (provided you are not building a dll ;-) ).

HTH, Weedz (Edward W.F. Veld)
My private project:Download the CrownBase source code !!
 
I create different exe's all the time. I use it when I have a new version of my program that needs to go out for the next day. I place the new file (program and newprogram) in the same directory as the old version and I have a script that runs after office hours to change the rename both (old program and program).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top