Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi, Can anyone help me to tell or give some source links to understand or snippet, how to integrate windows application to another application


For Example: When I click on the game application my application to run simultaneously without clicking on my application


Any Help is greatly appreciated
Posted
Updated 17-Apr-14 8:45am
v2

1 solution

The idea to "integrate application to another application" is inherently bad. You need to try to develop, not integrate (but it includes using libraries). In worst case, you can integrate application with application, only if both are designed to support some of the collaboration mechanisms. You know, processes are highly isolated, are executed in different address spaces and usually are not designed for collaboration, especially in windowed applications.

Now, "my application to run simultaneously" is not an "integration" at all. You could simple start them both from the same batch file, but normally it is totally useless. Your user knows how to start two applications in parallel; Windows is a multi-process OS. :-)

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900