Ejemplo n.º 1
0
 private void oibt_FormClosed(object sender, FormClosedEventArgs e)
 {
     oibt = null;
 }
Ejemplo n.º 2
0
 private void viewOpenIncidentByTechnicianToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (oibt == null)
     {
         oibt = new OpenIncidentsByTech();
         oibt.MdiParent = this;
         oibt.FormClosed += new FormClosedEventHandler(oibt_FormClosed);
         oibt.Show();
     }
     else oibt.Activate();
 }