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