예제 #1
0
 public void UpdateTitle(string title) // an attampt to be able to update the title, never worked
 {
     using (Frm_Field f2 = new Frm_Field())
     {
         f2.Text = title;
     }
 }
예제 #2
0
 private void imReadyForFinalsToolStripMenuItem_Click(object sender, EventArgs e) //opens another Window!
 {
     using (Frm_Field f2 = new Frm_Field())
     {
         this.Hide();
         while (f2.ShowDialog() != DialogResult.OK)
         {
             this.Enabled = false;
         }
         this.Enabled = true;
     }
 }