Example #1
0
        private void btnConsulta_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            frmConsulta registro = new frmConsulta();

            registro.ShowDialog();
            this.Visible = true;
        }
Example #2
0
        private void btnConsulta_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            frmConsulta registro = new frmConsulta();

            registro.Controls.SetChildIndex(txtCPF, this.paciente.cpf);
            registro.ShowDialog();
            this.Visible = true;
            registro.Controls.SetChildIndex(txtCPF, paciente.cpf);
        }