Exemple #1
0
 public static void debug(string pl)
 {
     execute exec = new execute();
     exec.codeWindow.Text = pl;
     exec.Text = "Execute:";
     exec.ShowDialog();
 }
Exemple #2
0
        public static void debug(string pl)
        {
            execute exec = new execute();

            exec.codeWindow.Text = pl;
            exec.Text            = "Execute:";
            exec.ShowDialog();
        }
Exemple #3
0
 public static void complete_debug()
 {
     int i = 0;
     execute exec = new execute();
     MessageBox.Show(mainStrip.ln.ToString());
     while (i < mainStrip.ln)
     {
         i++;
         exec.codeWindow.Text = ExecCmd.ExecuteCommand("rye -r " + mainStrip.codeLines[1].ToString());
     }
     exec.Show();
 }
Exemple #4
0
        public static void complete_debug()
        {
            int     i    = 0;
            execute exec = new execute();

            MessageBox.Show(mainStrip.ln.ToString());
            while (i < mainStrip.ln)
            {
                i++;
                exec.codeWindow.Text = ExecCmd.ExecuteCommand("rye -r " + mainStrip.codeLines[1].ToString());
            }
            exec.Show();
        }