using windows forms execute a .exe file
问题 I want to execute a .exe file which starts my node.js app using windows forms(vb.net) on a button click. I am using Process.Start("C:\Users\PROG21\Desktop\chat\start.exe") The problem is it starts the command window and just within 3-4 seconds it automatically closes.Why is that so? This is happening only with Node.js app ,the other .exe files run smoothly through this code. And also on other button click i want to close the command window terminating the Node.js app.How can i achieve it? Any