I have a .cpp file in location E:\TC\BIN\hello.cpp. I need to run this hello.cpp file from C# windows form using Turbo C compiler. I have used the following code under a button.
private void button7_Click(object sender, EventArgs e)
{
Process process = new Process();
process.StartInfo.FileName = "E:\\TC\\BIN\\TC.exe";
process.StartInfo.Arguments = "E:\\TC\\BIN\\hello.cpp”; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
}
but here the Turbo C window appear with hello.cpp. then pressing Ctrl-F9 the output comes. But a need the output (hello.exe) directly after pressing button7 and save the hello.exe to a specified folder.