removed wacky dgv disables
This commit is contained in:
parent
8f4c42556c
commit
2d76a15a84
@ -229,7 +229,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
else
|
||||
{
|
||||
|
||||
dgvPatient.Visible = false; // Hide the DataGridView if no results are found.
|
||||
// dgvPatient.Visible = false; // Hide the DataGridView if no results are found.
|
||||
MessageBox.Show("No records found.");
|
||||
}
|
||||
|
||||
@ -270,7 +270,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
|
||||
cmuPatientEdit.Enabled = dgvPatient.Rows.Count > 0;
|
||||
cmuPatientDelete.Enabled = dgvPatient.Rows.Count > 0;
|
||||
dgvPatient.Visible = dgvPatient.Rows.Count > 0;
|
||||
// dgvPatient.Visible = dgvPatient.Rows.Count > 0;
|
||||
|
||||
|
||||
dgvPatient.Focus();
|
||||
@ -404,7 +404,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
}
|
||||
else
|
||||
{
|
||||
dgvPhysician.Visible = false; // Hide the DataGridView if no results are found.
|
||||
// dgvPhysician.Visible = false; // Hide the DataGridView if no results are found.
|
||||
MessageBox.Show("No records found.");
|
||||
}
|
||||
|
||||
@ -447,7 +447,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
cmuPhysicianDelete.Enabled = dgvPhysician.Rows.Count > 0;
|
||||
|
||||
|
||||
dgvPhysician.Visible = dgvPhysician.Rows.Count > 0;
|
||||
// dgvPhysician.Visible = dgvPhysician.Rows.Count > 0;
|
||||
|
||||
dgvPhysician.Focus();
|
||||
|
||||
@ -755,7 +755,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
}
|
||||
else
|
||||
{
|
||||
dgvPrescription.Visible = false; // Hide the DataGridView if no results are found.
|
||||
// dgvPrescription.Visible = false; // Hide the DataGridView if no results are found.
|
||||
MessageBox.Show("No records found.");
|
||||
}
|
||||
|
||||
@ -783,7 +783,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
cmuPrescriptionRefillThis.Enabled = dgvPrescription.Rows.Count > 0;
|
||||
cmuPrescriptionViewRefills.Enabled = dgvPrescription.Rows.Count > 0;
|
||||
|
||||
dgvPrescription.Visible = dgvPrescription.Rows.Count > 0;
|
||||
// dgvPrescription.Visible = dgvPrescription.Rows.Count > 0;
|
||||
|
||||
dgvPrescription.Focus();
|
||||
|
||||
@ -892,7 +892,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
}
|
||||
else
|
||||
{
|
||||
dgvMedication.Visible = false; // Hide the DataGridView if no results are found.
|
||||
// dgvMedication.Visible = false; // Hide the DataGridView if no results are found.
|
||||
MessageBox.Show("No records found.");
|
||||
}
|
||||
|
||||
@ -927,7 +927,7 @@ namespace Louis__Pharmacy_CNSA212_FP
|
||||
cmuMedicationEdit.Enabled = dgvMedication.Rows.Count > 0;
|
||||
cmuMedicationDelete.Enabled = dgvMedication.Rows.Count > 0;
|
||||
|
||||
dgvMedication.Visible = dgvMedication.Rows.Count > 0;
|
||||
// dgvMedication.Visible = dgvMedication.Rows.Count > 0;
|
||||
|
||||
dgvMedication.Focus();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user