|
-
Jul 1st, 2001, 11:03 PM
#1
Thread Starter
Hyperactive Member
can some one make or point me on how to ..
can some one make or point me on how to bind 2 exe's together so they both run when the user opens the binded exe?
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
-
Jul 14th, 2001, 02:45 AM
#2
You could just make 2 exes and then have each one shell the other when it starts. Just make sure to have each one stop itself if there is a prev Instance before it starts the other one or else they will go back and forth forever.
-
Jul 14th, 2001, 11:53 AM
#3
Hyperactive Member
I managed to join two files together using the "open" statement, but it didn't work only the first file opened.
When I write my code, only God and I know what it means. But a week later, only God knows.
-
Jul 14th, 2001, 10:06 PM
#4
do this!
create two OLE objects and insert both the EXE's into them!
then in ur code, to execute anyone of them, use this code:
ole1.action = 7 (for the first one)
ole2.action = 7 (for the second one)
any more questions, just ask...
-
Jul 15th, 2001, 12:30 PM
#5
Thread Starter
Hyperactive Member
umm there cant be any user interaction in my app ( other then them slecting the files to be binded etc) and the .exe must be able to open in windows
I know a lot oF Vb, expert in C++, and i think in assembly.
MSVC++6.NET
vb6
masm
Windowz Xp
I find my self using this a lot in C++
__asm {
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|