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

            f.Show();
        }