Hello,
I am working on a C#.NET project that needs to call .exe file from a project that I previously worked on. So, basically project A, needs to call project B. I am not sure how to do it. I tried calling with Process.Start ("something.exe "), but nothing happens so I am thinking maybe I have to be more specific to where exactly something.exe is located. Does something.exe has to be inside the same folder as project A? When I look for something.exe of my project B, I have two folders obj & bin, inside which of these is the .exe file that program A needs to run? I hope this is not too confusing....
This is really urgent and any help would be highly appreciated!
Thanks!
P.S. When project A tries to run exe file of my project B using Process.Start I get the error saying the project encountered a problem and needs to close down. I think the issue is with the location of my exe file.
I am working on a C#.NET project that needs to call .exe file from a project that I previously worked on. So, basically project A, needs to call project B. I am not sure how to do it. I tried calling with Process.Start ("something.exe "), but nothing happens so I am thinking maybe I have to be more specific to where exactly something.exe is located. Does something.exe has to be inside the same folder as project A? When I look for something.exe of my project B, I have two folders obj & bin, inside which of these is the .exe file that program A needs to run? I hope this is not too confusing....
This is really urgent and any help would be highly appreciated!
Thanks!
P.S. When project A tries to run exe file of my project B using Process.Start I get the error saying the project encountered a problem and needs to close down. I think the issue is with the location of my exe file.
Comment