public static void loadTextStrings(string docText) { office_writer x = new office_writer(); x.mainTextBox.Text += docText; x.ShowDialog(); x.mainTextBox.ReadOnly = true; }
private void ShowNewForm(object sender, EventArgs e) { office_writer childForm = new office_writer(); childForm.Show(this); }
private void newToolStripButton_Click(object sender, EventArgs e) { office_writer childForm = new office_writer(); childForm.Show(this); }