public FormDialog(FormEditor f, string ph, int t) { fm = f; type = t; InitializeComponent(); lblText.Text = ph; }
public FormTimer(FormEditor f, bool bl) { fm = f; context = bl; InitializeComponent(); random1.Enabled = false; random2.Enabled = false; }
public FormDebug(FormEditor f) { fm = f; InitializeComponent(); butError.Enabled = false; totalEvent = fm.getTotalEvent(); Thread timeThread = new Thread(new ThreadStart(writeTime)); timeThread.Start(); refreshEvent(); }
private void editorProc() { fe = new FormEditor(); for (int a = 0; a < runList.Items.Count; a++) { fe.RunToEdit(runList.Items[a].ToString()); } Application.Run(fe); }
public FormErrors(FormEditor f) { fm = f; InitializeComponent(); errorList.Items.Clear(); }
public FormKey(FormEditor f, bool bl) { fm = f; context = bl; InitializeComponent(); }
private void editorToolStripMenuItem_Click(object sender, EventArgs e) { FormEditor fe = new FormEditor(); fe.Show(); }
public FormClear(FormEditor f) { fm = f; InitializeComponent(); }