Пример #1
0
        //Funcionários
        private void pictureBox2_Click(object sender, EventArgs e)
        {
            pictureBox2.Image   = WindowsFormsApplication1.Properties.Resources.FuncionarioLocked;
            pictureBox2.Enabled = false;
            Funcionários f4 = new Funcionários();

            f4.Show();
            f4.MdiParent = this;
            f4.Location  = new Point(0, 0);
        }
Пример #2
0
 //Abre os Funcionários
 private void pictureBox2_Click(object sender, EventArgs e)
 {
     men1 = getprinc;
     if (men1 == 0)
     {
         Funcionários f4 = new Funcionários();
         f4.Show();
         f4.MdiParent = this;
         f4.Location  = new Point(0, 0);
     }
     else
     {
         MessageBox.Show("Já existe uma janela aberta");
     }
     men1 = 1;
     Funcionários.getmenu = men1;
 }