Ejemplo n.º 1
0
        private void btnListPessoa_Click(object sender, EventArgs e)
        {
            if (childrenAberto("Consultar Pessoa"))
            {
                return;
            }
            ConsultaPessoa consPessoa = new ConsultaPessoa();

            consPessoa.MdiParent = this;
            consPessoa.Show();
        }
Ejemplo n.º 2
0
        private void btnBuscaCliente_Click(object sender, EventArgs e)
        {
            if (childrenAberto("Consultar Pessoa"))
            {
                return;
            }
            ConsultaPessoa consPessoa = new ConsultaPessoa(txtCodCliente);

            consPessoa.MdiParent = Form1.container;
            consPessoa.Show();
        }