private void pictureBox11_Click(object sender, EventArgs e) { if (opengerirprodutos == "0") { OutrosProdutos outrosprodutos = new OutrosProdutos(); outrosprodutos.MdiParent = this; outrosprodutos.Show(); outrosprodutos.Location = new Point(0, 0); opengerirprodutos = "1"; } else { MessageBox.Show("Esta janela já está aberta"); } }
private void pictureBox3_Click(object sender, EventArgs e) { OutrosProdutos outrosprodutos = new OutrosProdutos(); pictureBox3.Enabled = false; outrosprodutos.MdiParent = this; outrosprodutos.Show(); outrosprodutos.Location = new Point(0, 0); }