[Mono-bugs] [Bug 349263] New: Process.Start()
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Dec 17 12:15:20 EST 2007
https://bugzilla.novell.com/show_bug.cgi?id=349263
Summary: Process.Start()
Product: Mono: Class Libraries
Version: 1.2.6
Platform: Macintosh
OS/Version: Mac OS X 10.4
Status: NEW
Severity: Normal
Priority: P5 - None
Component: System
AssignedTo: mono-bugs at ximian.com
ReportedBy: gavin.landon at ignitetech.com
QAContact: mono-bugs at ximian.com
Found By: Customer
--------------
Description of Problem:
Process.Start File Associations are not executing under OSX. This works under
Windows and Linux (OpenSUSE), but never executes under OSX. No failure, no
exception, just does nothing.
--------------
Steps to reproduce the problem:
Process proc = new Process();
proc.StartInfo.FileName = "Tester.txt";
proc.StartInfo.Arguments = "";
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.RedirectStandardOutput = false;
proc.Start();
--------------
Actual Results:
Nothing happens..
--------------
Expected Results:
TextEdit is associated to Text files on my OSX box. When I double click the
txt file it opens with no issues.
--------------
How often does this happen?
Every time.
--------------
Additional Information:
This works great, but makes it confusing on why a text file can't be ran the
same way under OSX.
Process proc = new Process();
proc.StartInfo.FileName = "http://www.novel.com";
proc.StartInfo.Arguments = "";
proc.StartInfo.UseShellExecute = true;
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.
More information about the mono-bugs
mailing list