Example #1
0
 void CloseForm(object sender, FormClosedEventArgs e)
 {
     formrov = null;
     fc1     = null;
     fc2     = null;
     fc3     = null;
     fcs1    = null;
     fcs2    = null;
     fcs3    = null;
 }
Example #2
0
 private void camara3ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (fcs3 == null)
     {
         fcs3             = new fSetCam3();
         fcs3.MdiParent   = this;
         fcs3.FormClosed += new FormClosedEventHandler(CloseForm);
         fcs3.Show();
     }
     else
     {
         fcs3.Activate();
     }
 }
Example #3
0
        private void button2_Click(object sender, EventArgs e)
        {
            fSetCam3 f = new fSetCam3();

            f.Show();
        }