From: <che...@us...> - 2007-06-19 19:42:23
|
Revision: 568 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=568&view=rev Author: chef_koch Date: 2007-06-19 12:42:19 -0700 (Tue, 19 Jun 2007) Log Message: ----------- commented out some lines to avoid a problem with direct input a few plugins add some methods to the OnStart / OnStopExternal event of Utils Modified Paths: -------------- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/ApplicationItems/ApplicationItem.cs Modified: trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/ApplicationItems/ApplicationItem.cs =================================================================== --- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/ApplicationItems/ApplicationItem.cs 2007-06-17 19:17:57 UTC (rev 567) +++ trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/ApplicationItems/ApplicationItem.cs 2007-06-19 19:42:19 UTC (rev 568) @@ -494,12 +494,13 @@ g_Player.Stop(); } - proc = new Process(); - proc.EnableRaisingEvents = true; - proc.Exited += new EventHandler(proc_Exited); + //proc = new Process(); + //proc.EnableRaisingEvents = true; + //proc.Exited += new EventHandler(proc_Exited); - proc.StartInfo = procStart; - ProgramUtils.StartProcess(proc, this.WaitForExit); + //proc.StartInfo = procStart; + //ProgramUtils.StartProcess(proc, this.WaitForExit); + Utils.StartProcess(procStart, this.WaitForExit); if (mpGuiMode) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |