RedBeard said:
How would I go about creating a command button that resets a combo box
to a "pristine state" i.e. nothing selected?
The others have pointed out how to clear a normal combo box. If you are
using Access 2007, and your combo box is bound to a multi-value field and
allows multiple selections, then that method won't work. If that is the
case, you can clear the combo box by setting its value to an empty array,
like this:
Me.MyComboBox = Array()
Remember, that will only work, and will only be necessary, if the combo box
supports multiple selections.