-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I'm trying to create a C# form app that will allow me to use all of my previous C++ programs from one central program.
I'm able to open the exes with Process.start, however it does not compile the code correctly.
Example code:
Process.Start("C:\\Documents and Settings\\dan\\Desktop\\test.exe");
This…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start()
at System.Diagnostics.Process.Start(ProcessStartInfo…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've used Process.Start to shell out and call 7zip to archive stuff
I've also used it to call ffmpeg to compress video files.
That was a while ago..but I rememeber there was some issue about the pcocess stalling if you don't read off the standardoutput/error. I don't remember everything about it…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am using a Process.Start in .Net 2.0 to start a child win32 app.
Process.start ( "SomeProcess.exe", "<Cmd line>" );
The process runs fine but and the user then closes this window. However if I then run the same process again in the same session, the cmd line recieved by the called…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I have a program that crashes when I execute it with System.Diagnostics.Process.Start in C#, but works fine if I execute a shortcut or batch file that runs the exe. Are there any alternative means of executing programs in C#, or any reasons why Process.Start might not work compared to the…
>>> More