Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
what is control f9 ? and by seeing the output directly does that mean you want to see hello.exe's out put so you want to call it after if compiles ? and what is button7 – Micah Armantrout May 22 '12 at 14:35
It won't compile because ” is not the official string terminator. – RolandK May 22 '12 at 14:48

closed as too localized by Robert Harvey May 23 '12 at 22:20

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

if you want to compile the cpp and the .cpp file run, you need compile its sending the parameters. I do something very long time ago, when I wrote my own editor. first compile sending the parameters check if the file exists. run it with shellexecute or similar.

share|improve this answer

Compile the application using the command-line compiler tcc.exe:

E:\TC\BIN\tcc.exe -eE:\TC\BIN\hello.exe E:\TC\BIN\hello.cpp

Then run E:\TC\BIN\hello.exe.

share|improve this answer
would you like to give me the complete code that i should write under the button7. – Polash May 22 '12 at 17:57
Sorry, you've been given more than enough already. The rest should be trivial. – Alexey Frunze May 22 '12 at 19:07

Not the answer you're looking for? Browse other questions tagged or ask your own question.