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 immi
Create a new text file, name it app.bat and put this in there:
app.exe pause
Now have your form point to that bat file.