示例#1
0
 public void StartTerminator(string strngcommand)
 {
     if (!Terminator.IsBusy)
     {
         command = strngcommand.Split(' ');
         Terminator.RunWorkerAsync();
     }
 }
示例#2
0
 public void StartTerminator(string strngcommand)
 {
     if (!Terminator.IsBusy)
     {
         command = strngcommand.Split(' ');
         Terminator.RunWorkerAsync();
     }
     StatusReport.Text = "Installing";
 }
示例#3
0
        public void StartTerminator(string strngcommand)
        {
            if (!Terminator.IsBusy)
            {
                command    = new string[impModID.Length + 1];
                command[0] = strngcommand;
                for (int i = 0; i < impModID.Length; i++)
                {
                    command[i + 1] = impModID[i];
                    Console.WriteLine("Added {0}", impModID[i]);
                }
                Terminator.RunWorkerAsync();
            }

            StatusReport.Text = "Installing";
        }