diff --git a/Louis'-Pharmacy_CNSA212-FP/frmInfo.Designer.cs b/Louis'-Pharmacy_CNSA212-FP/frmInfo.Designer.cs index 46b507c..c09a615 100644 --- a/Louis'-Pharmacy_CNSA212-FP/frmInfo.Designer.cs +++ b/Louis'-Pharmacy_CNSA212-FP/frmInfo.Designer.cs @@ -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 // diff --git a/Louis'-Pharmacy_CNSA212-FP/frmInfo.cs b/Louis'-Pharmacy_CNSA212-FP/frmInfo.cs index 4c06075..fea7ea7 100644 --- a/Louis'-Pharmacy_CNSA212-FP/frmInfo.cs +++ b/Louis'-Pharmacy_CNSA212-FP/frmInfo.cs @@ -701,5 +701,10 @@ namespace Louis__Pharmacy_CNSA212_FP dgvRx.Focus(); } + + private void txtRxPatientID_TextChanged(object sender, EventArgs e) + { + + } } }