You know when you
have 2 programs in the
same project?
how do you switch programs
when running? (with code)
Printable View
You know when you
have 2 programs in the
same project?
how do you switch programs
when running? (with code)
what do you mean by 2 programs in one project????
You can't run 2 exe projects at the same time.
However, you can add a dll/ocx project together with an exe project, and let the exe use the dll/ocx (please read the help, it's all in there)
You mean switch with a button or what?
Osborn
I think I'm missing the point of this thread...
But, if you're program is using an ocx or dll you wrote yourself, and you want to debug it, open the exe project. Add the ocx or dll project, you have 2 projects now.
Run the program (make sure yuo set the exe project as startup), and the program should use the ocx/dll project you just added. That way you can easily debug the ocx/dll.
Something like that... I believe there's a better explanation in MSDN.