Reset combo box to blank

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a combo box on a form so users can set criteria for a report. How do
I reset the combo box to blank after the report runs? Now, if the user
returns to the form to select a different criteria, the original value is
still there. Any suggestions are appreciated.
 
NNester said:
I have a combo box on a form so users can set criteria for a report.
How do I reset the combo box to blank after the report runs? Now, if
the user returns to the form to select a different criteria, the
original value is still there. Any suggestions are appreciated.

Normally, you'd use a line of code that sets the combo box's value to
Null; e.g.,

Me!cboMyCombo = Null

Exactly when and where you would execute this line of code would depend
on how you have things set up.
 
Back
Top