Hi All-
I was wondering if anyone could help me with this issue. I am trying to run this 3rd party application called "CoreFTP.ex e" from within C#. I have tested my code with "Notepad.ex e" and that works fine. I've tried it with another program executable and it works. I am receiving this error from within .NET when I try to run "CoreFTP":
Run-time Error!
C:\Program Files\CoreFTP\c oreftp.exe
This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
This is the code I'm using from within .NET:
proc.StartInfo. UseShellExecute = true;
proc.StartInfo. WorkingDirector y = @"C:\Program Files\CoreFTP";
proc.StartInfo. FileName = "coreftp.ex e";
proc.Start();
Any help on this would be AWESOME!
Thank you.
I was wondering if anyone could help me with this issue. I am trying to run this 3rd party application called "CoreFTP.ex e" from within C#. I have tested my code with "Notepad.ex e" and that works fine. I've tried it with another program executable and it works. I am receiving this error from within .NET when I try to run "CoreFTP":
Run-time Error!
C:\Program Files\CoreFTP\c oreftp.exe
This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
This is the code I'm using from within .NET:
proc.StartInfo. UseShellExecute = true;
proc.StartInfo. WorkingDirector y = @"C:\Program Files\CoreFTP";
proc.StartInfo. FileName = "coreftp.ex e";
proc.Start();
Any help on this would be AWESOME!
Thank you.
Comment