Exemplo n.º 1
0
 // looking for using HCN string entered by the user
 private void Btn_LookupPatient_Click(object sender, EventArgs e)
 {
     // search patient, if found, go to update/add patient panel
     if (demographics.LookForPatient())
     {
         Panel_AddPatient.BringToFront();
         Field_HCN.ReadOnly = true;
     }
 }
Exemplo n.º 2
0
 // Add patient event
 private void Btn_AddPatient_Click(object sender, EventArgs e)
 {
     Panel_AddPatient.BringToFront();
     Btn_Submit_Update.Text = "Submit";
 }