I want to run a console application (eg app.exe) from a windows form load event. I'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immidiately.
Is there any way that I can run app.exe and leave it open?
|
I want to run a console application (eg app.exe) from a windows form load event. I'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immidiately. Is there any way that I can run app.exe and leave it open? |
|||||||||
|
|
If you are just wanting the console window to stay open, you could run it with something like this command:
|
|||||||
|
|
If app.exe does nothing, or finishes its work quickly (i.e. simply prints "Hello World" and returns), it will behave the way you just explained. If you want app.exe to stay open after its work is done, put some sort of completion message followed by |
|||
|
|
|
Try doing this:
I think this will get you the behavior you are trying for. Assuming you weren't just trying to see the output in the command window. If you just want to see the output, you have several versions of that answer already. This is just how you can run your app and keep the console open. Hope this helps. Good luck. |
|||
|
|
|
If you can change the code of app.exe, just add |
|||
|
|
|
app.exe can end with |
|||
|
|
|
You have one of two problems, given your master/slave application setup:
For the first problem, you need to wait/block for the process to complete (i.e. For the second problem, it sounds like the slave app has done what it needs to (or thrown an exception) and is closing immediately. Try running it with the same parameters from a command prompt and check the output. |
|||
|
|
|
If you have control over app.exe, you should be aware of how it functions so I will assume that you do not have control over it's inner workings. In that case, you can try passing a help flag which may or may not give you more info on how to call app.exe. Try something like this:
|
|||
|
|
|
Create a new text file, name it app.bat and put this in there:
Now have your form point to that bat file. |
|||
|
|