https://bugzilla.novell.com/show_bug.cgi?id=349263
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=349263#c1 Gavin Landon <[EMAIL PROTECTED]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] --- Comment #1 from Gavin Landon <[EMAIL PROTECTED]> 2007-12-26 13:42:32 MST --- Work around if(os=="OSX") { sParm = "-t " + sFile; sFile = "open"; bUseShellExecute = false; } if(os=="Linux") { sParm = sFile; sFile = "xdg-open"; bUseShellExecute = false; } Process proc = new Process(); proc.StartInfo.FileName = sFile; proc.StartInfo.Arguments = sParm; proc.StartInfo.UseShellExecute = bUseShellExecute; proc.StartInfo.RedirectStandardOutput = false; proc.Start(); -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
