private void btnConsulta_Click(object sender, EventArgs e) { this.Visible = false; frmConsulta registro = new frmConsulta(); registro.ShowDialog(); this.Visible = true; }
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); }