Well, if you are planning to just have the second program run, you can call it using:
using System.Diagnostics;
...
Process myProc;
// Start the process.
myProc = Process.Start("filename");
//The process does something.
...
// Stop the process.
myProc.CloseMainWindow();
*code from http://www.codeguru.com/forum/archive/index.php/t-181653.html
It takes filename (your executable) and starts it as a new process.
How can i add a executable program to my program and run the executeable file in to my program and the program starts with my program :cry: The shape like this ;
**************************+---+ * My Prog v.0.01 | | --------------------------+--\\ * *\\ * +---------------------+ * \\ * |The Prog v.9.91 | * \\ * +---------------------+ * \\ * | | * \\ | * | | * \\ | * | | * ------- * | | * My Program * | | * * | | * * | | * * | | * * | | * * | | * * | \ | * * | \\ | * * +-------------------\\+ * * \\ * * \\ * ******************************* \\ \\ | \\| -----+The program that i want to run in my programi'm a new programmer =D if you help me i'll be very happy Thanks for read... :o