Exemplo n.º 1
0
 //search button clicked
 private void btnsearch_Click(object sender, EventArgs e)
 {
     if (bh == null)
     {
         Bug_History bh = new Bug_History();
         bh.FormClosed += Bh_FormClosed;
         bh.MdiParent   = this;
         bh.Show();
     }
     else
     {
         bh.Activate();
     }
 }
Exemplo n.º 2
0
 private void Bh_FormClosed(object sender, FormClosedEventArgs e)
 {
     bh = null;
     //throw new NotImplementedException();
 }