I want to create a multi tool in windows forms where i can run an program in an control. not external (that it opens (not Process.Start("program.exe")), that it runs in the control in my multi tool. Is there a way to do it maybe like this or something?:
using System.Windows.Forms;
Process process = new Process();
process.StartInfo.FileName = "program.exe";
process.Start();
control.Process = process; // execute process in control
i dont have any ideas, internet doesnt gives answers