public static void debug(string pl) { execute exec = new execute(); exec.codeWindow.Text = pl; exec.Text = "Execute:"; exec.ShowDialog(); }
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(); }