I have 2 applications. one is a console application and the other is a windows form application.
I need both of these to run together in order for my application to work. for example:
The console application - has controls over the cursor, so it'll navigate 5cm blocks from left to right on the screen.
The Windows form application - will be in the back ground, and when the cursor goes over the form different things will pop up
(the above is just as example)
What i need to do is, to run both these applications in just 1 click. as in when i run the solution, i need it to pop up the windows form and then launch the console application (which is in another solution), and finally to get my application running.
hope i made my question clear. This question might sound dumb, but i am new to C#. Please help.
Give me step by step instructions how to do this.
i am using Windows Visual Studio 2008.