a.exe + b.exe = c.exe 
Author Message
 a.exe + b.exe = c.exe

If you merge two windows exe-files (a.exe + b.exe = c.exe), and
when you execute c.exe, you want a.exe to start first and then
execute b.exe.

So the question is:
How to start two merged exe-files in the same exe-file?

Thomas



Wed, 13 Jun 2001 03:00:00 GMT  
 a.exe + b.exe = c.exe
Thomas Holjo wrote in a message to All:

 TH> If you merge two windows exe-files (a.exe + b.exe = c.exe), and
 TH> when you execute c.exe, you want a.exe to start first and then
 TH> execute b.exe.
 TH> So the question is:
 TH> How to start two merged exe-files in the same exe-file?

The only reasonably on-topic answer (but probably not what you want) is:

#include <stdlib.h>

int main(void)
{
   system("a.exe");
   system("b.exe");
   return 0;

Quote:
}

greetings,
Tom



Wed, 13 Jun 2001 03:00:00 GMT  
 a.exe + b.exe = c.exe


Quote:

>If you merge two windows exe-files (a.exe + b.exe = c.exe), and
>when you execute c.exe, you want a.exe to start first and then
>execute b.exe.

>So the question is:
>How to start two merged exe-files in the same exe-file?

The C language doesn't specify object file formats, .exe or otherwise.
Your question is about your particular platform/OS and is essentially
unrelated to C. You'll need to ask in the relevant platform related
newsgroup.

--
-----------------------------------------


-----------------------------------------



Wed, 13 Jun 2001 03:00:00 GMT  
 a.exe + b.exe = c.exe
Though offtopic, I would suggest that you use a simple .bat file. Make
it run miminized and it should work fine.
Quote:

> If you merge two windows exe-files (a.exe + b.exe = c.exe), and
> when you execute c.exe, you want a.exe to start first and then
> execute b.exe.

> So the question is:
> How to start two merged exe-files in the same exe-file?

> Thomas



Thu, 14 Jun 2001 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. redistributing cl.exe, link.exe, nmake.exe, etc.

2. cl.exe, link.exe, mscvrt.exe Madness...

3. How to call B.exe from A.exe and then stop A.exe

4. debug exe OK but release exe crashes

5. Custom Event From a EXE to another EXE

6. SOAPSUDS.exe and WSDL.exe

7. Help: start win .exe from win .exe

8. ATL Exe Vs MFC Exe

9. CRecordset AND Debug exe success AND Release exe failure

10. Debug a exe launched by another exe

11. Debug VC6 exe launched from VB6 exe

12. using FAULT address of EXE sans .pdb in EXE with .pdb

 

 
Powered by phpBB® Forum Software