private void btnListPessoa_Click(object sender, EventArgs e) { if (childrenAberto("Consultar Pessoa")) { return; } ConsultaPessoa consPessoa = new ConsultaPessoa(); consPessoa.MdiParent = this; consPessoa.Show(); }
private void btnBuscaCliente_Click(object sender, EventArgs e) { if (childrenAberto("Consultar Pessoa")) { return; } ConsultaPessoa consPessoa = new ConsultaPessoa(txtCodCliente); consPessoa.MdiParent = Form1.container; consPessoa.Show(); }