Bug 136784. Prevent multiple instances of GUI. Provided by Manojna

This commit is contained in:
Jim Norman
2006-01-25 21:17:19 +00:00
parent 5b270da8a7
commit 85b8d6d5ff
2 changed files with 12 additions and 1 deletions

View File

@@ -217,7 +217,7 @@ public class Common
{
mgrProcess = new Process();
ProcessStartInfo mgrProcessStartInfo = new ProcessStartInfo("ps" );
mgrProcessStartInfo.Arguments = "h";
mgrProcessStartInfo.Arguments = "Tuxh";
mgrProcessStartInfo.UseShellExecute = false;
mgrProcessStartInfo.RedirectStandardOutput = true;
mgrProcess.StartInfo = mgrProcessStartInfo;