Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-05 Thread Gonzalo Paniagua Javier
El dom, 04-04-2004 a las 19:06, Ivan Guvinec escribi: Hi, I stumbled upon then same problem in my project after upgrading to Mono 0.31. The workaround with UseShellExecute = false works, but I have noticed a considerable performance penalty. So I wonder: 1. Is the fact that arguments are

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-04 Thread Ivan Guvinec
Hi, I stumbled upon then same problem in my project after upgrading to Mono 0.31. The workaround with UseShellExecute = false works, but I have noticed a considerable performance penalty. So I wonder: 1. Is the fact that arguments are not used without UseShellExecute a bug in Mono 0.31

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-04 Thread Marcus
Are you using Windows or Linux? As I understand UseShellExecute, when set to false, Process.Start() will treat the filename as a binary image and attempt to execute it directly. This is really the only option that makes sense under vanilla Unix. On Windows, when UseShellExecute == true, it

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-02 Thread Gonzalo Paniagua Javier
El vie, 02-04-2004 a las 01:04, vguzev escribió: add: psi.UseShellExecute = false; and it will work. Hmmm it doesn't work with UseShellExecute=false too... :( 8- [EMAIL PROTECTED] processstart]$ cat ProcessStart.cs using

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-01 Thread Gonzalo Paniagua Javier
On Thu, 2004-04-01 at 15:36, Vadim B. Guzev wrote: Hello! I've seen somewhere in the list before (but I can't find this letter now, when I really need it :( ) that someone had problems with starting processes with parameters from Mono 0.31. Was this problem solved? I have the same

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-01 Thread vguzev
add: psi.UseShellExecute = false; and it will work. Hmmm it doesn't work with UseShellExecute=false too... :( 8- [EMAIL PROTECTED] processstart]$ cat ProcessStart.cs using System; using System.Diagnostics; class ProcessStart {

Re: [Mono-list] Starting processes with parameters from Mono 0.31 and mono-0.31.99.20040331

2004-04-01 Thread vguzev
add: psi.UseShellExecute = false; and it will work. Hmmm it doesn't work with UseShellExecute=false too... :( 8- [EMAIL PROTECTED] processstart]$ cat ProcessStart.cs using System; using System.Diagnostics; class ProcessStart {