Re: [Mono-winforms-list] Running Executable (.exe) using Process.Start on Linux

2009-01-29 Thread Rafael Teixeira
If mysqldupm.exe is a managed exe you need to call mono passing it as parameter (exe files aren't executable files in Linux), you can also create a shell script that call mono passing the exefile, and use the script name in your Process call. If mysqldump.exe is a native windows program it can't

Re: [Mono-winforms-list] Running Executable (.exe) using Process.Start on Linux

2009-01-29 Thread Matt Emson
aifaz wrote: As the other reply says, you need to run this under Mono... on Windows, this process would be spawned using the MS.Net framework. string locn = Application.StartupPath + \\mysqldump.exe; However, this line is quite possibly causing a problem in Linux as well - Linux