Update frmInfo.cs

This commit is contained in:
Noah 2024-02-20 13:37:00 -05:00
parent 1143f79035
commit 545cd84540
2 changed files with 6 additions and 0 deletions

View File

@ -968,6 +968,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.txtRxPatientID.Name = "txtRxPatientID";
this.txtRxPatientID.Size = new System.Drawing.Size(164, 22);
this.txtRxPatientID.TabIndex = 9;
this.txtRxPatientID.TextChanged += new System.EventHandler(this.txtRxPatientID_TextChanged);
//
// txtRxMedicationID
//

View File

@ -701,5 +701,10 @@ namespace Louis__Pharmacy_CNSA212_FP
dgvRx.Focus();
}
private void txtRxPatientID_TextChanged(object sender, EventArgs e)
{
}
}
}