I have two combo boxes used to select filter criteria for a form, cboSelectPatient and cobSelectPhysician.
They are working wonderfully.
However, I'm now looking for a quick, one-button way to reset them to their initial values (how they are when the form opens) - with no selections enabled.
I've tried using the following, but it's not working the way I truly want:
Private Sub Command42_Click()
Me.cboSelectTester.Value = ""
Me.cboSelectPatient.Value = ""
Me.Requery
End Sub
Note: The values in the combo boxes ARE test, not numeric.
What do I need to do to the on_click code to get this button working the "right" way?