Clear text in a combo box

  • Thread starter Thread starter Errol Kemp
  • Start date Start date
E

Errol Kemp

I am trying to find get my database to display data that i
type in a combo box...what coding do i use to clear the
combo box after it has displayed the required data?..any
help would be greatful
 
Set the value of the combo to Null:
Me.MyCombo = Null

Presumably this is an unbound combo.
 
Back
Top